blob: c0a520e167698afabe14f3782eaed93c835817eb [file] [log] [blame]
Daniel Dunbar3573b2c2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlsson1b749a02009-07-07 19:06:02 +00002
Sebastian Redl599d6752010-09-08 00:48:43 +00003struct S; // expected-note 2 {{forward declaration of 'S'}}
Anders Carlsson1b749a02009-07-07 19:06:02 +00004
5void f() {
John McCall98624352010-03-10 11:27:22 +00006 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}}
Sebastian Redl599d6752010-09-08 00:48:43 +00007 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}}
Anders Carlsson1b749a02009-07-07 19:06:02 +00008}