blob: d8a2663093742d788a7af6d9e2708ccd9f50d0b0 [file] [log] [blame]
Daniel Dunbara56f7462008-08-26 00:41:39 +00001// RUN: clang -fsyntax-only -verify %s
2
3@interface A
4@end
5@interface B
6@end
7
8void f0(int cond, A *a, B *b) {
9 // Ensure that we can still send a message to result of incompatible
10 // conditional expression.
Daniel Dunbar40727a42008-09-03 17:53:25 +000011 [ (cond ? a : b) test ]; // expected-warning {{method '-test' not found}}
Daniel Dunbara56f7462008-08-26 00:41:39 +000012}