1 // RUN: %llvmgcc -x objective-c -fwritable-strings -S %s -o - | FileCheck %s
2 // CHECK: @.str = private constant
3 // CHECK: @.str1 = internal global
10 - (void)foo:(NSString*)msg;
11 - (void)bar:(const char*)msg;
15 [a foo:@"Hello world!"];
16 [a bar:"Goodbye world!"];