https://issues.dlang.org/show_bug.cgi?id=21449
--- Comment #1 from Basile-z <b2.temp at gmx.com> ---
sorry, test case should be
---
struct Foo
{
static opCall(T)(T t){}
}
void main()
{
Foo(0); //OK
const(Foo)(0); //NG
}
---
--