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