blob: 8987f6d66fdb804294323ddd7be2c2b5105ec4b6 [file] [log] [blame]
Charles Davisd18f9f92010-08-16 04:01:50 +00001// RUN: %clang_cc1 -cxx-abi microsoft -fsyntax-only -verify %s
2
3// Test that we reject pointers to members of incomplete classes (for now)
4struct A; //expected-note{{forward declaration of 'A'}}
5int A::*pai1; //expected-error{{incomplete type 'A'}}
6