mirror of
https://github.com/ziglang/zig.git
synced 2026-01-14 03:15:14 +00:00
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.