aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/string4.m
blob: 87b081c084dc0574a9eadc77524d2f393a17ef70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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 ([@"this is a string" length] != strlen ("this is a string"))
    abort ();
  return 0;
}