2021-02-21 17:44:27 +01:00

4 lines
87 B
JavaScript

function foo (this : number, x : number, y : string, ...z : any) {
x + y + z[0];
}