swc/crates/swc_ecma_parser/tests/tsc/interfaceExtendingClassWithProtecteds.ts

15 lines
184 B
TypeScript

class Foo {
protected x: string;
}
interface I extends Foo { // error
x: string;
}
interface I2 extends Foo {
y: string;
}
var i: I2;
var r = i.y;
var r2 = i.x; // error