mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
9 lines
157 B
C++
9 lines
157 B
C++
// 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);
|
|
}
|