TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesFunctionArgument2.js

17 lines
401 B
TypeScript
Raw Normal View History

2014-11-11 20:31:45 +01:00
//// [objectLiteralShorthandPropertiesFunctionArgument2.ts]
var id: number = 10000;
var name: string = "my name";
var person = { name, id };
function foo(p: { a: string; id: number }) { }
foo(person); // error
//// [objectLiteralShorthandPropertiesFunctionArgument2.js]
var id = 10000;
var name = "my name";
var person = { name: name, id: id };
function foo(p) { }
2014-11-11 20:31:45 +01:00
foo(person); // error