1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 10:45:57 +01:00
Files
libtins/cmake/Modules/CheckCXXFeatures/cxx-test-noexcept.cpp
2016-10-23 11:34:10 -07:00

8 lines
71 B
C++

int foo() noexcept {
return 0;
}
int main() {
return foo();
}