Even with `--strict` this is accepted: ``` match 3: case "hello": pass ``` While this is rejected: ``` if 3 == "hello": pass ```