Files
netbsd/gnu/dist/gcc4/gcc/testsuite/objc/execute/string1.m
2013-04-06 16:48:33 +02:00

18 lines
319 B
Objective-C

/* Based on a test case contributed by Nicola Pero. */
#include <string.h>
#include <stdlib.h>
#ifdef __NEXT_RUNTIME__
#include "next_mapping.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;
}