aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/undefined-protocol.m
blob: 78cf8da336c3337072ede0d20518b5c1a384ef3b (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -emit-llvm-only -fobjc-runtime=gcc %s

// PR13820
// REQUIRES: LP64

@protocol MadeUpProtocol;

@interface Object <MadeUpProtocol> @end
@implementation Object @end