TypeScript/tests/cases/compiler/allowJsClassThisTypeCrash.ts

10 lines
160 B
TypeScript

// @checkJs: true
// @allowJs: true
// @noEmit: true
// @filename: app.js
const f = function() {};
var g = f;
g.prototype.m = function () {
this;
};