Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c20482b10ee4ffcea31f67392743ccdf6df1f7f4
/
.
/
test
/
SemaCXX
/
expressions.cpp
blob: 23983a1dbd0b0958162ffc46064c86592d1da907 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
void
choice
(
int
);
int
choice
(
bool
);
void
test
()
{
// Result of ! must be type bool.
int
i
=
choice
(!
1
);
}