mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
6 lines
288 B
Objective-C
6 lines
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!";
|
|
|