mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
280 B
C
14 lines
280 B
C
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/numliteral.c(11): Error: embedded `_` not allowed
|
|
---
|
|
*/
|
|
|
|
int x = 0b00; // https://issues.dlang.org/show_bug.cgi?id=23410
|
|
|
|
// Test C-specific errors
|
|
int y = 0_1;
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=22549
|
|
int z = 078.0 + 008. + 009e1;
|