xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/string1.m (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
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