aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/string3.m
blob: 21527dcbf1552b9c44871e4ca6578397a488be34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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;
}