mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 08:13:07 +00:00
13 lines
181 B
Zig
13 lines
181 B
Zig
fn entry(x: []i32) i32 {
|
|
return x.*;
|
|
}
|
|
comptime {
|
|
_ = entry;
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :2:13: error: index syntax required for slice type '[]i32'
|