tests/cases/compiler/publicMemberImplementedAsPrivateInDerivedClass.ts(4,7): error TS2421: Class 'Foo' incorrectly implements interface 'Qux':
  Property 'Bar' is private in type 'Foo' but not in type 'Qux'.


==== tests/cases/compiler/publicMemberImplementedAsPrivateInDerivedClass.ts (1 errors) ====
    interface Qux {
     Bar: number;
    }
    class Foo implements Qux {
          ~~~
!!! error TS2421: Class 'Foo' incorrectly implements interface 'Qux':
!!! error TS2421:   Property 'Bar' is private in type 'Foo' but not in type 'Qux'.
     private Bar: number;
    }
    