blob: d4ae330949fffa2985b62136523bbfe6229455fa [file] [log] [blame]
Daniel Dunbar2d6ca8d2008-08-21 02:51:29 +00001// RUN: clang -emit-llvm %s -o %t
Chris Lattnera21ddb32007-11-26 01:40:58 +00002// PR1824
3
4int foo(int x, short y) {
5 return x ?: y;
6}