FE: fix a typo in irrelevantMapGetAbstract.kt diagnostic test
Related to KT-45053
This commit is contained in:
committed by
Space Team
parent
c1094d8046
commit
081e1de5af
+2
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user