blob: 49137ea6716c0a65a49c148d7f7be14f301076ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Test this without pch.
// FIXME: clang-cc -include %S/methods.h -fsyntax-only -verify %s &&
// Test with pch.
// FIXME: clang-cc -x=objective-c -emit-pch -o %t %S/methods.h &&
// FIXME: clang-cc -include-pch %t -fsyntax-only -verify %s
void func() {
TestPCH *xx = [TestPCH alloc];
[xx instMethod];
}
|