Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
6da08ab967bcd4fdffc68bf30eefa26a32559a8c
/
.
/
Tests
/
CompileFeatures
/
cxx_explicit_conversions.cpp
blob: a34128f0d9b554fe9338630b539239372e6c577b [
file
] [
log
] [
blame
]
class
A
{
int
m_i
;
public
:
explicit
operator
bool
()
{
return
m_i
!=
0
;
}
};