summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/expressions.cpp
blob: 6a2f30d33e5eb350b43baaeaf7d5e4c20c9ae517 (plain)
1
2
3
4
5
6
7
8
9
// 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);
}
OpenPOWER on IntegriCloud