1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* TEST_OUTPUT: --- fail_compilation/ice12397.d(12): Error: undefined identifier `tokenLookup` --- */ struct DSplitter { enum Token : int { max = tokenLookup.length } immutable string[Token.max] tokenText; }