// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
;
// FIXME: should warn that declaration attribute in type position is
// being applied to the declaration instead?
struct s foo;
// FIXME: Should warn that type attribute in declaration position is
// being applied to the type instead?
struct s *bar ;
// Should not warn because type attribute is in type position.
struct s * baz;
// Should not warn because declaration attribute is in declaration position.
struct s *quux ;