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