ref: fbd0a767de45e5c5d9dfe6dc4a86c95a328bd22b dir: /test/infermismatch.myr/
use std /* should fail to compile after infering that a is a float, b is a char, and the types are incompatible. */ const main = { var a var b a = 1.0 b = 'a' a = b }