Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / objc / execute / string2.m
blob63b0e9b8056d190864ffe09adb08ce952061dd37
1 /* Based on a test case contributed by Nicola Pero.  */
3 #include <string.h>
4 #include <stdlib.h>
6 #ifdef __NEXT_RUNTIME__
7 #include "next_mapping.h"
8 #else
9 #include <objc/NXConstStr.h>
10 #endif
12 int main(int argc, void **args)
14   if (strcmp ([@"this " @"is " @"a " @"string" cString],
15               "this " "is " "a " "string"))
16     abort ();
17   return 0;