d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.dg / Wcastresult2.d
blob83d189a6adf9b2de687e9ce344becfc59d72c154
1 // { dg-do compile }
2 // { dg-options "-Wcast-result -Wno-deprecated" }
4 void test()
6 auto imvalue = 1.23i;
7 auto revalue = 1.23;
9 auto imtore = cast(double)imvalue; // { dg-warning "cast from 'idouble' to 'double' will produce zero result" }
10 auto retoim = cast(idouble)revalue; // { dg-warning "cast from 'double' to 'idouble' will produce zero result" }
11 return;