mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
14 lines
216 B
Zig
14 lines
216 B
Zig
const T = struct {
|
|
const T = struct {
|
|
fn f() void {
|
|
_ = T;
|
|
}
|
|
};
|
|
};
|
|
|
|
// error
|
|
//
|
|
// :4:17: error: ambiguous reference
|
|
// :2:5: note: declared here
|
|
// :1:1: note: also declared here
|