rust/compiler
Maybe Waffle d5440926e2 Suggest replacing typeof(...) with an actual type
This commit suggests replacing typeof(...) with an actual type of "...",
for example in case of `typeof(1)` we suggest replacing it with `i32`.

If the expression
- Is not const (`{ let a = 1; let _: typeof(a); }`)
- Can't be found (`let _: typeof(this_variable_does_not_exist)`)
- Or has non-suggestable type (closure, generator, error, etc)
we don't suggest anything.
2022-04-07 23:40:32 +04:00
..
2022-04-07 12:51:50 +10:00
2022-04-05 07:01:00 +01:00
2022-04-05 07:01:00 +01:00
2022-04-05 07:01:00 +01:00
2022-04-05 23:18:40 +02:00
2022-04-05 07:01:00 +01:00
2022-04-05 07:01:00 +01:00
2022-04-05 07:01:00 +01:00