TypeScript/tests/cases/compiler/duplicateIdentifierDifferentModifiers.ts

22 lines
213 B
TypeScript

// Not OK
interface B { x; }
interface B { x?; }
// OK
class A {
public y: string;
}
interface A {
y: string;
}
// Not OK
class C {
private y: string;
}
interface C {
y: string;
}