TypeScript/tests/cases/conformance/salsa/typeFromPropertyAssignment7.ts

11 lines
175 B
TypeScript
Raw Normal View History

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