MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / runnable_cxx / test6716.d
blob6aeb25d6dccadef22475792484497fc11ac6de76
1 // EXTRA_CPP_SOURCES: test6716.cpp
3 version(Windows)
5 // without main, there is no implicit reference to the runtime library
6 // other platforms pass the runtime library on the linker command line
7 version(CRuntime_Microsoft)
8 version(Win64)
9 pragma(lib, "phobos64");
10 else
11 pragma(lib, "phobos32mscoff");
12 else
13 pragma(lib, "phobos");
16 extern(C++) int test6716(int magic)
18 assert(magic == 12345);
19 return 0;