mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
16 lines
234 B
D
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;
|
|
}
|