mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
17 lines
287 B
TypeScript
17 lines
287 B
TypeScript
|
// @target: es2015
|
||
|
|
||
|
class Base {
|
||
|
#x;
|
||
|
constructor() {
|
||
|
class Derived {
|
||
|
#x;
|
||
|
testBase(x: Base) {
|
||
|
console.log(x.#x);
|
||
|
}
|
||
|
testDerived(x: Derived) {
|
||
|
console.log(x.#x);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|