mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
273 B
D
9 lines
273 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail101.d(9): Deprecation: use of complex type `creal` is deprecated, use `std.complex.Complex!(real)` instead
|
|
fail_compilation/fail101.d(9): Error: cannot implicitly convert expression `1` of type `int` to `creal`
|
|
---
|
|
*/
|
|
|
|
creal c = 1;
|