CMake/Tests/CxxDialect/use_constexpr.cxx

11 lines
85 B
C++

constexpr int foo()
{
return 0;
}
int main(int argc, char**)
{
return foo();
}