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

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

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