Files
hdf5/config/cmake_ext_mod/HDFCXXTests.cpp
Dana Robinson 3b5a4a0648 [svn-r27636] Added cmake_ext_mod files from trunk. Merging them properly was
annoying with the direct clobber of the externals directory
with real files.
2015-08-31 23:24:03 -05:00

57 lines
617 B
C++

#ifdef OLD_HEADER_FILENAME
#include <iostream>
int main(void) { return 0; }
#endif
#ifdef HDF_NO_NAMESPACE
namespace HDF {
int fnord;
}
int main(void) {
using namespace HDF;
fnord = 37;
return 0;
}
#endif
#ifdef HDF_NO_STD
#include <string>
using namespace std;
int main(void) {
string myString("testing namespace std");
return 0;
}
#endif
#ifdef BOOL_NOTDEFINED
int main(void) {
bool flag;
return 0;
}
#endif
#ifdef NO_STATIC_CAST
int main(void) {
float test_float;
int test_int;
test_float = 37.0;
test_int = static_cast <int> (test_float);
return 0;
}
#endif