mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 17:26:06 +00:00

'id' that can be used (only!) via a contextual keyword as the result type of an Objective-C message send. 'instancetype' then gives the method a related result type, which we have already been inferring for a variety of methods (new, alloc, init, self, retain). Addresses <rdar://problem/9267640>. llvm-svn: 139275
17 lines
380 B
Objective-C
17 lines
380 B
Objective-C
// Test this without pch.
|
|
// RUN: %clang_cc1 -include %S/objc_methods.h -fsyntax-only -verify %s
|
|
|
|
// Test with pch.
|
|
// RUN: %clang_cc1 -x objective-c -emit-pch -o %t %S/objc_methods.h
|
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
|
|
|
|
void func() {
|
|
TestPCH *xx;
|
|
TestForwardClassDecl *yy;
|
|
// FIXME:
|
|
// AliasForTestPCH *zz;
|
|
|
|
xx = [TestPCH alloc];
|
|
[xx instMethod];
|
|
}
|