Add expected note.  Surely people test before the check in stuff.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64565 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaCXX/inherit.cpp b/test/SemaCXX/inherit.cpp
index cca1f8d..6c00218 100644
--- a/test/SemaCXX/inherit.cpp
+++ b/test/SemaCXX/inherit.cpp
@@ -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}}