1 import test9434;//expression; 2 3 enum TokenType { Dot } 4 Tok(string type)5 template Tok(string type) 6 { 7 enum Tok = TokenType.Dot; 8 } 9 Semantic(T)10 template Semantic(T) 11 { 12 invariant(){} 13 } 14 15 template Semantic(T) if (is(T == BinaryExp!(Tok!"."))) 16 { 17 } 18