blob: 66462b3c96ce196a0f413c01bb5d28402de5d1e4 [file] [log] [blame]
/* Based on a test case contributed by Nicola Pero. */
#include <string.h>
#include <stdlib.h>
#include <objc/NXConstStr.h>
int main(int argc, void **args)
{
if (strcmp ([@"this " @"is " @"a " @"string" cString],
"this " "is " "a " "string"))
abort ();
return 0;
}