Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
bc4e29f307f86ddbc2f31d9530da79ad9b0c6b7b
/
.
/
test
/
SemaCXX
/
expressions.cpp
blob: 6a2f30d33e5eb350b43baaeaf7d5e4c20c9ae517 [
file
] [
log
] [
blame
]
// 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
);
}