FIR IDE: fix typo in test directory (overridden)
This commit is contained in:
committed by
Ilya Kirillov
parent
907d2e9ed4
commit
4266ffa274
+18
@@ -0,0 +1,18 @@
|
||||
// FILE: main.kt
|
||||
class A : B(){
|
||||
override fun fo<caret>o(x: Int): Int
|
||||
}
|
||||
|
||||
// FILE: B.kt
|
||||
abstract class B {
|
||||
open fun foo(x: Int): Int
|
||||
abstract fun foo(x: String): Int
|
||||
}
|
||||
|
||||
|
||||
// RESULT
|
||||
// ALL:
|
||||
// B.foo(x: Int): Int
|
||||
|
||||
// DIRECT:
|
||||
// B.foo(x: Int): Int
|
||||
Reference in New Issue
Block a user