Suggest macro call when not sure that it is fn definition

This commit is contained in:
Esteban Küber 2017-11-22 09:49:27 -08:00
parent c82e9e8e1e
commit df357b20be
20 changed files with 33 additions and 37 deletions

View file

@ -16,5 +16,5 @@ struct X {
}
fn main() {
let y = X {a = 1};
let y = X {a: 1};
}