Avoid massacaring errors

This commit is contained in:
Aleksey Kladov 2018-08-25 15:12:17 +03:00
parent c3e5987c43
commit a80c07bdff
2 changed files with 12 additions and 5 deletions

View file

@ -59,6 +59,13 @@ struct Foo {
f: foo<|><|>
}
", ",\n g: (),");
do_check(r"
fn foo {
let;
1 + 1;
<|>92<|>;
}
", "62");
}