blob: 3a69109968692b2e47015642b128ea30c2f66e54 [file] [log] [blame]
Eric Christopher7bc54e52011-08-20 00:37:56 +00001// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin %s -o - | FileCheck %s
2
3// CHECK: _unnamed_cfstring_
4
5@class NSString;
6
7@interface A
8- (void)bork:(NSString*)msg;
9@end
10
11void func(A *a) {
12 [a bork:@"Hello world!"];
13}