mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 10:24:47 +01:00
backend=auto (now the default if backend is omitted) means to let the compiler pick whatever backend it wants as the default. This is important for platforms where we don't yet have a self-hosted backend, such as loongarch64. Also purge a bunch of redundant target=native.
32 lines
1 KiB
Zig
32 lines
1 KiB
Zig
fn foo() void {}
|
|
fn bar() void {}
|
|
|
|
pub export fn entry1() void {
|
|
const TestFn = fn () void;
|
|
const test_fns = [_]TestFn{ foo, bar };
|
|
for (test_fns) |testFn| {
|
|
testFn();
|
|
}
|
|
}
|
|
pub export fn entry2() void {
|
|
const TestFn = fn () void;
|
|
const test_fns = [_]TestFn{ foo, bar };
|
|
var i: usize = 0;
|
|
_ = test_fns[i];
|
|
_ = &i;
|
|
}
|
|
pub export fn entry3() void {
|
|
const TestFn = fn () void;
|
|
const test_fns = [_]TestFn{ foo, bar };
|
|
var i: usize = 0;
|
|
_ = &test_fns[i];
|
|
_ = &i;
|
|
}
|
|
// error
|
|
//
|
|
// :7:10: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
|
|
// :7:10: note: use '*const fn () void' for a function pointer type
|
|
// :15:18: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
|
|
// :15:17: note: use '*const fn () void' for a function pointer type
|
|
// :22:19: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
|
|
// :22:18: note: use '*const fn () void' for a function pointer type
|