mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
// @target: esnext
|
|
// @useDefineForClassFields: true
|
|
class Base {
|
|
x = 1;
|
|
}
|
|
|
|
class Derived extends Base {
|
|
get x() { return 2; } // should be an error
|
|
set x(value) { console.log(`x was set to ${value}`); }
|
|
}
|
|
|
|
const obj = new Derived(); // nothing printed
|
|
console.log(obj.x); // 1
|