/* Test that 'class', 'public', 'private', protected', 'try', 'catch', 'throw' are not keywords in pure Objective-C if not after a '@'.*//* { dg-do compile } */intclass(intpublic){intprivate=public;intprotected=private*2;inttry=protected*2;intcatch=try*2;intthrow=catch*2;returnthrow;}intmain(void){returnclass(0);}