Skip to content

[Errors] class implementing private type #66

@mhegazy

Description

@mhegazy
module m1 {
    export class C2 implements m3.i3 {
        public get p1() {
            return null;
        }

        public f55() {
            return "Hello world";
        }
    }
    module m3 {
        export interface i3 {
            f55(): string;
        }
    }
    class C1 { }
}

Expected: Exported class 'C2' implements private interface 'm3.i3'.

Actual: no error

Metadata

Metadata

Assignees

Labels

BugA bug in TypeScriptFixedA PR has been merged for this issue

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions