blob: f3a05c1dbcedc3c5dd5d8643717549b67ae233db [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Sebastian Redl95389dd2009-01-19 21:37:51 +00002
3void choice(int);
4int choice(bool);
5
6void test() {
7 // Result of ! must be type bool.
8 int i = choice(!1);
9}