Ben Noordhuis
0845cbe277
name types inside functions after variable
Before this commit:
fn f() []const u8 {
const S = struct {};
return @typeName(S); // "f()", unexpected.
}
And now:
fn f() []const u8 {
const S = struct {};
return @typeName(S); // "S", expected.
}
Fixes #675.
2018-02-22 19:54:02 +01:00
..
2018-02-22 19:54:02 +01:00
2018-02-12 02:14:44 -05:00
2018-01-25 04:10:11 -05:00
2018-02-15 12:14:20 -05:00
2018-01-25 04:10:11 -05:00
2018-02-10 21:02:24 -05:00
2018-02-16 15:22:29 -05:00
2018-01-25 04:10:11 -05:00
2018-02-08 21:54:44 -05:00
2018-02-09 18:27:50 -05:00
2018-01-25 04:10:11 -05:00