1
0
Fork 0
arangodb/cmake/CheckCXX11Features/cxx11-test-noexcept.cpp

9 lines
95 B
C++

volatile void dummy () noexcept {
int a = 0;
}
int main () {
dummy();
return 0;
}