mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
239 B
D
11 lines
239 B
D
module test20488;
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=20488
|
|
struct Bar {
|
|
void opDispatch(string s, Args...) (Args args) {
|
|
}
|
|
void fun() {
|
|
(bool[int]).init.length;
|
|
this.f((int[int]).init.length);
|
|
}
|
|
}
|