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