blob: 0a9ee67ea01ee50b86fe9f3efd62cf300b6d58e3 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
unsigned char * Foo( void )
{
static unsigned char s[256] = "\pHello";
return s;
}