blob: 204d2dd28235b3f43905c429e12dd8b69c728a12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
const fns = [_](fn (i32) i32){ a, b, c };
pub fn a(x: i32) i32 {
return x + 0;
}
pub fn b(x: i32) i32 {
return x + 1;
}
export fn c(x: i32) i32 {
return x + 2;
}
export fn entry() usize {
return @sizeOf(@TypeOf(fns));
}
// error
// target=x86_64-linux
//
// :1:38: error: expected type 'fn (i32) i32', found 'fn (i32) callconv(.c) i32'
// :1:38: note: calling convention 'x86_64_sysv' cannot cast into calling convention 'auto'
|