blob: 7dba3b55d82272bfddc925ca0dbfa586f1952f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn entry(x: []i32) i32 {
return x.*;
}
comptime {
_ = entry;
}
// error
// backend=stage2
// target=native
//
// :2:13: error: index syntax required for slice type '[]i32'
|