summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenObjC/forward-declare-protocol-gnu.m
blob: b57a4a48d4a00ca907d4ffd2d29885484a6b591e (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.5 | FileCheck  %s

// Regression test: check that we don't crash when referencing a forward-declared protocol.
@protocol P;

Protocol *getProtocol(void)
{
	        return @protocol(P);
}

// CHECK: @.objc_protocol
OpenPOWER on IntegriCloud