mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
12 lines
220 B
D
12 lines
220 B
D
import imports.test21098_phobos : Appender, Nullable;
|
|
|
|
struct Type {
|
|
Nullable!(Type[]) templateArgs;
|
|
}
|
|
|
|
Type[] parseDeclarations() {
|
|
Appender!(Type[]) members;
|
|
return null;
|
|
}
|
|
|
|
enum ast = parseDeclarations();
|