blob: 23983a1dbd0b0958162ffc46064c86592d1da907 [file] [log] [blame]
Sebastian Redl95389dd2009-01-19 21:37:51 +00001// RUN: clang -fsyntax-only -verify %s
2
3void choice(int);
4int choice(bool);
5
6void test() {
7 // Result of ! must be type bool.
8 int i = choice(!1);
9}