Allow function types to have a calling convention. #1938

This commit is contained in:
Christoffer Lerno
2025-02-07 22:03:15 +01:00
parent ea4c864d4b
commit 77db50bce8
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
def Foo = fn int(String x, int z) @callconv("veccall");
fn int v(String x, int z) @callconv("veccall")
{
return 1;
}