dmd/compiler/test/fail_compilation/ice12397.d
2022-07-09 18:53:07 +02:00

16 lines
234 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice12397.d(12): Error: undefined identifier `tokenLookup`
---
*/
struct DSplitter
{
enum Token : int
{
max = tokenLookup.length
}
immutable string[Token.max] tokenText;
}