blob: c58935590b879c7c98f797cf7e70a8a876dedbcf [file] [log] [blame]
Daniel Dunbar3e98e512008-09-08 18:01:15 +00001// RUN: clang -emit-llvm -o %t %s
2
Daniel Dunbara56f7462008-08-26 00:41:39 +00003@protocol P0
4@end
5@interface A <P0>
6@end
7
8id f0(int a, id<P0> x, A* p) {
9 return a ? x : p;
10}