blob: 23983a1dbd0b0958162ffc46064c86592d1da907 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
void choice(int);
int choice(bool);
void test() {
// Result of ! must be type bool.
int i = choice(!1);
}