mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
20 lines
197 B
D
20 lines
197 B
D
// PERMUTE_ARGS:
|
|
// EXTRA_FILES: imports/test66a.d
|
|
import imports.test66a;
|
|
|
|
alias int TOK;
|
|
|
|
enum
|
|
{
|
|
TOKmax
|
|
};
|
|
|
|
struct Token
|
|
{
|
|
static char[][TOKmax] tochars;
|
|
}
|
|
|
|
class Lexer
|
|
{
|
|
Token token;
|
|
}
|