blob: 4638c0bcfa4e2f0d447377c3c1690550b282c7c7 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail7702.d(14): Error: `s.opDispatch!"x"` isn't a template
---
*/
struct S
{
template opDispatch (string name) {}
}
void main()
{
S s;
s.x!int;
}