1 struct S
2 {
opDispatchS3    template opDispatch (string name) {}
4 }
main()5 void main()
6 {
7     S s;
8     s.x!int;
9 }
10