0124: Foreign functions can't return more than one value
function foo<cdecl>(): int, int // error: Foreign functions can not return more than one value.Possible solutions:
function foo<cdecl>(): intfunction foo(): int, intLast updated