allwinner_a64/android/external/clang/test/CodeGenObjC/undefined-protocol.m
2018-08-08 16:14:42 +08:00

9 lines
183 B
Objective-C

// RUN: %clang_cc1 -emit-llvm-only -fobjc-runtime=gcc %s
// PR13820
// REQUIRES: LP64
@protocol MadeUpProtocol;
@interface Object <MadeUpProtocol> @end
@implementation Object @end