CMake/Tests/CxxDialect/use_constexpr.cxx
Stephen Kelly 913394af24 cmTarget: Add CXX_STANDARD and CXX_EXTENSION target properties.
These are used to determine whether to add -std=c++11, -std=gnu++11
etc flags on the compile line.
2014-04-07 16:48:44 +02:00

11 lines
85 B
C++

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