mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
224 B
D
13 lines
224 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag15340.d(11): Error: undefined identifier `undef1`
|
|
fail_compilation/diag15340.d(12): Error: undefined identifier `undef2`
|
|
---
|
|
*/
|
|
|
|
class C
|
|
{
|
|
auto a = undef1;
|
|
auto b = undef2;
|
|
}
|