Open alrz opened 5 years ago
object local() { return (1, 2); }
->
(int, int) local() { return (1, 2); }
This is specifically useful on local functions. So you don't need to spell out the type every time.
(kind of a replacement for var on local functions which we don't have)
var
Related #29677 (Codefix instead of refactoring)
->
This is specifically useful on local functions. So you don't need to spell out the type every time.
(kind of a replacement for
var
on local functions which we don't have)