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-17 17:53:07 -05:00
2018-02-15 12:30:29 -05:00
2018-01-31 22:48:40 -05:00
2018-02-10 21:02:24 -05:00
2018-02-10 21:02:24 -05:00
2017-04-24 12:14:45 -04:00
2018-02-10 21:02:24 -05:00
2018-02-10 21:02:24 -05:00
2018-02-10 21:02:24 -05:00
2018-02-21 02:00:33 -05:00
2018-01-31 22:48:40 -05:00
2016-07-28 20:14:57 -07:00
2018-02-12 02:44:31 -05:00