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