X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fprivate.m;fp=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fprivate.m;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=02cc23498bd0e1c3bbb381c3728751b460856cf0;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/objc/execute/private.m b/gcc/testsuite/objc/execute/private.m deleted file mode 100644 index 02cc2349..00000000 --- a/gcc/testsuite/objc/execute/private.m +++ /dev/null @@ -1,32 +0,0 @@ -/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */ -#include -#include - -/* Test the @private, @protected, @public keyworks for ivars. We only - check syntax. */ - -@interface TestClass : Object -{ - int a; - -@private - int ivarOne, ivarTwo; - id ivarThree; - -@protected - int ivarFour; - -@public - id ivarFive; -} -@end - -@implementation TestClass -@end - - -int main (void) -{ - /* Only test compilation */ - return 0; -}