https://issues.dlang.org/show_bug.cgi?id=22432

--- Comment #3 from [email protected] ---
Another weird construct that should parse, but fails:

struct Foo {
    int x;
};

struct Foo ident(struct Foo f){return f;}

int main(){
 int y11 = (ident)(f).x; // should be equivalent to ident(f).x
}

--

Reply via email to