ref: f7ff6155f5c57b8ece62dd8f1401c69e3bf3c6a4 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 }