mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 22:20:37 +03:00
13 lines
237 B
D
Executable file
13 lines
237 B
D
Executable file
#!/usr/bin/env dub
|
|
/+dub.sdl:
|
|
dependency "dmd" path="../.."
|
|
+/
|
|
void main()
|
|
{
|
|
import dmd.astbase;
|
|
import dmd.globals;
|
|
import dmd.parse;
|
|
|
|
scope parser = new Parser!ASTBase(null, null, false);
|
|
assert(parser !is null);
|
|
}
|