]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/cfstring-coalesce/foo.c
ld64-95.2.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cfstring-coalesce / foo.c
old mode 100755 (executable)
new mode 100644 (file)
index fe1b30e..a5c794e
@@ -2,10 +2,13 @@
 
 extern void bar();
 
+extern CFStringRef OtherCFString;
+
 void foo()
 {
        CFStringGetLength(CFSTR("hello"));
        CFStringGetLength(CFSTR("world"));
+       CFStringGetLength(OtherCFString);
 }