mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
6 lines
303 B
Objective-C
6 lines
303 B
Objective-C
// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s &&
|
|
// RUN: clang-cc -fgnu-runtime -emit-llvm -o %t %s && grep NXConstantString %t | count 1 &&
|
|
// RUN: clang-cc -fgnu-runtime -fconstant-string-class=NSConstantString -emit-llvm -o %t %s && grep NSConstantString %t | count 1
|
|
|
|
id a = @"Hello World!";
|
|
|