blob: a7bcf431d5280fb8c080cbdbce5862d34c1e170d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Based on a test case contributed by Nicola Pero. */
#import "../../objc-obj-c++-shared/next-mapping.h"
#include <string.h>
#include <stdlib.h>
#ifndef __NEXT_RUNTIME__
#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;
}
|