blob: 54550d6f5e9ba723e2bcd755b9fb3fcc6d7c34c3 [file] [log] [blame]
/* Based on a test case contributed by Nicola Pero. */
#include <string.h>
#include <stdlib.h>
#include <objc/NXConstStr.h>
int main(int argc, void **args)
{
if ([@"this is a string" length] != strlen ("this is a string"))
abort ();
return 0;
}