mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
306 B
D
10 lines
306 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail11751.d(10): Error: missing exponent
|
|
fail_compilation/fail11751.d(10): Error: semicolon expected following auto declaration, not `ABC`
|
|
fail_compilation/fail11751.d(10): Error: variable name expected after type `ABC`, not `;`
|
|
---
|
|
*/
|
|
|
|
auto x = 0x1.FFFFFFFFFFFFFpABC;
|