Initial exploration and test case creation

Co-authored-by: RyanCavanaugh <6685088+RyanCavanaugh@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-07-15 03:53:44 +00:00
parent 58449bba93
commit 6355df5d95

View File

@ -0,0 +1,17 @@
// @strict: true
class AA {
do1() {
const b = dd.getB();
if (this === b) {
console.log("this === b");
}
}
}
class BB extends AA {
getB(): BB { return this; }
}
let dd = new BB();
dd.do1();