TypeScript/tests/cases/conformance/salsa/typeFromPropertyAssignment7.ts
2017-11-29 11:37:35 -08:00

11 lines
175 B
TypeScript

// @noEmit: true
// @allowJs: true
// @checkJs: true
// @target: es6
// @Filename: a.js
var obj = {};
obj.method = function (hunch) {
return true;
}
var b = obj.method();