[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / message-arrays.m
blob3e8697fc9376058cd2ab0d9fa0decd6df9735ec4
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 void f0(id a) {
4   // This should have an implicit cast
5   [ a print: "hello" ];
8 @interface A
9 -(void) m: (int) arg0, ...;
10 @end
12 int f1(A *a) {
13   // This should also get an implicit cast (for the vararg)
14   [a m: 1, "test"];