Ticket #7396: test.cpp

File test.cpp, 109 bytes (added by Pinaraf, 13 years ago)

Simple not-compiling source code

Line 
1#include <cmath>
2#include <iostream>
3
4int main() {
5 std::cout << std::isnan(42) << std::endl;
6 return 0;
7}
8