blob: 01fb85c11893746be84a1014d5b5d27ca5173122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Based on a test case contributed by Nicola Pero. */
#include <string.h>
#include <stdlib.h>
#ifdef __NEXT_RUNTIME__
#import <Foundation/NSString.h>
#else
#include <objc/NXConstStr.h>
#endif
int main(int argc, void **args)
{
if (strcmp ([@"this " @"is " @"a " @"string" cString],
"this " "is " "a " "string"))
abort ();
return 0;
}
|