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
7int main(int argc, void **args)
8{
9 if (strcmp ([@"this is a string" cString], "this is a string"))
10 abort ();
11 return 0;
12}
13