1 // This test checks the output format without the intermediate json representation
2 // compile-flags: --error-format=human
3 
main()4 pub fn main() {
5     let x = 42;
6     x = 43;
7 }
8