Created attachment 851
Patch for dmd r810
This is parser bug.
----
struct ellipsis{}
enum __dollar = ellipsis();
struct s{
static auto opSlice(){}
static auto opCall(A...)(A args){}
}
void main(){
//s[]; // if remove comment, it is succeeded to compile.
s($);
}
----