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

--- Comment #1 from Basile-z <[email protected]> ---
sorry, test case should be

---
struct Foo
{
    static opCall(T)(T t){}
}

void main()
{
    Foo(0);         //OK
    const(Foo)(0);  //NG
}   
---

--

Reply via email to