[cfe-commits] r64565 - /cfe/trunk/test/SemaCXX/inherit.cpp

Mike Stump mrs at apple.com
Sat Feb 14 12:35:19 PST 2009


Author: mrs
Date: Sat Feb 14 14:35:19 2009
New Revision: 64565

URL: http://llvm.org/viewvc/llvm-project?rev=64565&view=rev
Log:
Add expected note.  Surely people test before the check in stuff.

Modified:
    cfe/trunk/test/SemaCXX/inherit.cpp

Modified: cfe/trunk/test/SemaCXX/inherit.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/inherit.cpp?rev=64565&r1=64564&r2=64565&view=diff

==============================================================================
--- cfe/trunk/test/SemaCXX/inherit.cpp (original)
+++ cfe/trunk/test/SemaCXX/inherit.cpp Sat Feb 14 14:35:19 2009
@@ -10,7 +10,7 @@
 class C : public B1, private B2 { };
 
 
-class D;
+class D;		// expected-note {{forward declaration of 'class D'}}
 
 class E : public D { }; // expected-error{{base class has incomplete type}}
 





More information about the cfe-commits mailing list