llvm-project/clang/test/CodeGenObjC/compatibility-alias.m

9 lines
162 B
Mathematica
Raw Normal View History

// RUN: clang-cc -emit-llvm -o %t %s
@interface Int1 @end
typedef Int1 Int1Typedef;
@compatibility_alias Int1Alias Int1Typedef;
@implementation Int1Alias @end