Skip to content

Commit 7216ee6

Browse files
author
Arthur Ozga
committed
Merge branch 'createTypeNode' of github.com:aozgaa/TypeScript into createTypeNode
2 parents 28df2ab + 7318c2c commit 7216ee6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/cases/fourslash/codeFixClassImplementInterfaceNamespaceConflict.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
//// namespace N1 {
44
//// export interface I1 {
55
//// x: number;
6+
//// y: I1;
67
//// }
78
//// }
89
//// interface I1 {
910
//// f1();
1011
//// }
11-
////
1212
//// class C1 implements N1.I1 {[| |]}
1313

1414
verify.rangeAfterCodeFix(`
1515
x: number;
16+
y: N1.I1;
1617
`);

0 commit comments

Comments
 (0)