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

--- Comment #3 from Basile-z <[email protected]> ---
3rd test case from 9185:

---
struct S { int i; }
struct S1 { S s; }
void f(int) { }

void main()
{
    S1 s1;
    f(s1.s.tupleof); // OK
    f((s1.s).tupleof); // Error: need 'this' to access member s
}
---

--

Reply via email to