OSDN Git Service

New tests
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc / execute / string4.m
1 /* Based on a test case contributed by Nicola Pero.  */
2
3 #include <string.h>
4 #include <stdlib.h>
5 #include <objc/NXConstStr.h>
6
7 int main(int argc, void **args)
8 {
9   if ([@"this is a string" length] != strlen ("this is a string"))
10     abort ();
11   return 0;
12 }