freebsd-dev/test/SemaCXX/expressions.cpp
2009-06-02 17:58:47 +00:00

10 lines
155 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
void choice(int);
int choice(bool);
void test() {
// Result of ! must be type bool.
int i = choice(!1);
}