]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/cfstring-and-cstring/bar.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cfstring-and-cstring / bar.c
1 #include <CoreFoundation/CFString.h>
2
3
4 //
5 // llvm may make cfstring that has backing store of kTest
6 //
7
8
9 const char kTest[] = "test";
10
11 void bar()
12 {
13 CFStringGetLength(CFSTR("test"));
14 }