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
..
2017-08-29 07:51:34 -04:00
2018-01-31 22:48:40 -05:00
2017-09-09 22:54:50 -04:00
2017-05-23 21:38:31 -04:00