blob: 7b15ee15158a90cc1456df56414f412f40285202 [file] [log] [blame]
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);
}
}