blob: 075e9b23dae76dc87494db42802b6e800ea06ca6 (
plain)
1
2
3
4
5
6
7
8
9
|
export fn foo(num: anytype) i32 {
_ = num;
return 0;
}
// error
// target=x86_64-linux
//
// :1:15: error: generic parameters not allowed in function with calling convention 'x86_64_sysv'
|