<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ 1.16.7 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? N/A ### What did you do? Tried commenting operands. <pre> {{$products := dict "A" ( customslice /* Price */ 10 /* Stock Amount */ 500 ) }} {{$products}} </pre> ### What did you expect to see? <pre>map[A:[10 500]]</pre> ### What did you see instead? <pre>unexpected "/" in operand</pre> ### Playground: https://play.golang.org/p/xDe9j18R3T5 -- Edit A simpler example: <pre> {{$x := 1 /* x variable */}} {{$x}} </pre> Playground: https://play.golang.org/p/XK5h2JBD_8e