]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.dg/Wcastresult2.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / Wcastresult2.d
CommitLineData
29ff25e7 1// { dg-do compile }
5fee5ec3 2// { dg-options "-Wcast-result -Wno-deprecated" }
29ff25e7
IB
3
4void test()
5{
6 auto imvalue = 1.23i;
7 auto revalue = 1.23;
8
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;
12}