mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
253 B
D
15 lines
253 B
D
/* REQUIRED_ARGS: -O -m64
|
|
* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test20903.d(14): Error: integer overflow
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=20903
|
|
|
|
long test()
|
|
{
|
|
long r = 0x8000_0000_0000_0000L;
|
|
long x = -1L;
|
|
return r / x;
|
|
}
|