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