llvm-for-llvmta/tools/clang/test/CodeGenObjC/undefined-protocol.m
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

10 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