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