summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/expressions.cpp
blob: 23983a1dbd0b0958162ffc46064c86592d1da907 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang -fsyntax-only -verify %s 

void choice(int);
int choice(bool);

void test() {
  // Result of ! must be type bool.
  int i = choice(!1);
}
OpenPOWER on IntegriCloud