mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
241 B
D
13 lines
241 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail298.d(12): Error: cannot implicitly convert expression `num1 / cast(ulong)num2` of type `ulong` to `int`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
ulong num1 = 100;
|
|
int num2 = 10;
|
|
int result = num1 / num2;
|
|
}
|