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