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