зеркало из https://github.com/microsoft/clang-1.git
7 строки
288 B
Objective-C
7 строки
288 B
Objective-C
// RUN: %clang_cc1 -emit-llvm -o %t %s
|
|
// RUN: %clang_cc1 -fgnu-runtime -emit-llvm -o %t %s && grep NXConstantString %t | count 1
|
|
// RUN: %clang_cc1 -fgnu-runtime -fconstant-string-class NSConstantString -emit-llvm -o %t %s && grep NSConstantString %t | count 1
|
|
|
|
id a = @"Hello World!";
|
|
|