Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / objc / execute / string3.m
blob2595a09c19a198561936e63229a6b061cb6f56b4
1 /* Based on a test case contributed by Nicola Pero.  */
3 #import "../../objc-obj-c++-shared/next-mapping.h"
4 #include <string.h>
5 #include <stdlib.h>
7 #ifndef __NEXT_RUNTIME__
8 #include <objc/NXConstStr.h>
9 #endif
11 #define STRING "this is a string"
13 int main (int argc, void **args)
15   if (strcmp ([@STRING cString], STRING))
16     abort ();
17   return 0;