Cppfront compiles ``` cx : const = 42; ``` into ```cpp auto cx { 42 }; ``` which omits the `const`. I think we should support `const` variables with deduced types such that the original Cpp2 code produce something like ```cpp auto const cx { 42 }; ```