In gcc/: 2010-10-30 Nicola Pero <nicola.pero@meta-innovation.com>
[platform/upstream/gcc.git] / gcc / testsuite / obj-c++.dg / property / property-neg-2.mm
1 /* { dg-do compile } */
2
3 @interface Bar
4 @end
5
6 @implementation Bar
7 @property int FooBar; /* { dg-error "property declaration not in @interface or @protocol context" } */
8 @end