Fix test semantic merge conflict between #39348 and #39130 (#39478)

This commit is contained in:
Wesley Wigham 2020-07-07 14:30:58 -07:00 committed by GitHub
parent c08c059dae
commit 62b4377acf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ import A from './types1';
import { B, C, D } from './types2';
export class C implements Base {
a: Readonly<A> & { kind: "a"; };
a: Readonly<A> & { kind: 'a'; };
b<T extends B = B>(p1: C): D<C> {
throw new Error('Method not implemented.');
}