blob: 7b07b40b08ce3d25a83de0cb94302c20337841e6 (
plain)
1
2
3
4
5
6
7
8
9
|
const x = @import("builtin").bogus;
export fn entry() usize {
return @sizeOf(@TypeOf(x));
}
// error
//
// :1:29: error: root source file struct 'builtin' has no member named 'bogus'
// note: struct declared here
|