Add a new tune avx256_avoid_vec_perm for SRF.
[official-gcc.git] / gcc / testsuite / objc / execute / private.m
blobc1959efe7a660d7ac423e22bb7f41e253c5ca32f
1 /* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
2 #import "../../objc-obj-c++-shared/TestsuiteObject.m"
3 #include <objc/objc.h>
5 /* Test the @private, @protected, @public keyworks for ivars.  We only
6    check syntax. */
8 @interface TestClass : TestsuiteObject
10   int a;
12 @private
13   int ivarOne, ivarTwo;
14   id ivarThree;
16 @protected
17   int ivarFour;
19 @public
20   id ivarFive;
22 @end
24 @implementation TestClass
25 @end
28 int main (void)
30   /* Only test compilation */
31   return 0;