mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
238 B
D
14 lines
238 B
D
// COMPILE_SEPARATELY:
|
|
// EXTRA_SOURCES: imports/b26a.d
|
|
// PERMUTE_ARGS:
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=382
|
|
|
|
struct List(T) {
|
|
interface A {}
|
|
}
|
|
|
|
int main(char[][] args) {
|
|
List!(char) list;
|
|
return 0;
|
|
}
|