Skip to content

Commit 6355df5

Browse files
Initial exploration and test case creation
Co-authored-by: RyanCavanaugh <[email protected]>
1 parent 58449bb commit 6355df5

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// @strict: true
2+
3+
class AA {
4+
do1() {
5+
const b = dd.getB();
6+
if (this === b) {
7+
console.log("this === b");
8+
}
9+
}
10+
}
11+
12+
class BB extends AA {
13+
getB(): BB { return this; }
14+
}
15+
16+
let dd = new BB();
17+
dd.do1();

0 commit comments

Comments
 (0)