mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
194 B
D
15 lines
194 B
D
/*
|
|
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;
|
|
}
|