blob: 0ef6917c5911cd2835448b0ba25bca31a5651237 [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
3struct S; // expected-note{{forward declaration of 'struct S'}}
4
5void f() {
6 __is_pod(S); // expected-error{{incomplete type 'struct S' used in type trait expression}}
7}