
  Syntax error!
  syntax_tests/data/parsing/errors/pattern/templateLiteral.res:4:3-27

  2 │ 
  3 │ switch l {
  4 │ | `zero coord ${zeroCoord}` => ()
  5 │ | `first coord ${zeroCoord} snd ${zeroCoord} ` => ()
  6 │ | _ => ()

  String interpolation is not supported in pattern matching.


  Syntax error!
  syntax_tests/data/parsing/errors/pattern/templateLiteral.res:5:33

  3 │ switch l {
  4 │ | `zero coord ${zeroCoord}` => ()
  5 │ | `first coord ${zeroCoord} snd ${zeroCoord} ` => ()
  6 │ | _ => ()
  7 │ }

  Not sure what to do with this character: "$".


  Syntax error!
  syntax_tests/data/parsing/errors/pattern/templateLiteral.res:5:3-46

  3 │ switch l {
  4 │ | `zero coord ${zeroCoord}` => ()
  5 │ | `first coord ${zeroCoord} snd ${zeroCoord} ` => ()
  6 │ | _ => ()
  7 │ }

  String interpolation is not supported in pattern matching.

let zeroCoord = {js|0.0|js}
;;match l with
  | (("")[@res.template ]) -> ()
  | (("")[@res.template ]) -> ()
  | _ -> ()