FE: fix a typo in irrelevantMapGetAbstract.kt diagnostic test

Related to KT-45053
This commit is contained in:
Mikhail Glukhikh
2023-11-08 11:30:59 +01:00
committed by Space Team
parent c1094d8046
commit 081e1de5af
3 changed files with 5 additions and 22 deletions
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// FILE: Dict.java
public abstract class Dict<K, V> {
@@ -7,7 +8,7 @@ public abstract class Dict<K, V> {
// FILE: MHashtable.java
abstract public class MHashtable<X, Y> extends Dict<X, Y> implements java.util.Map<X, Y> {
public V get(Object key) { return null; }
public Y get(Object key) { return null; }
}
// FILE: main.kt