FIR IDE: fix typo in test directory (overridden)

This commit is contained in:
Jinseong Jeon
2021-10-23 23:22:31 -07:00
committed by Ilya Kirillov
parent 907d2e9ed4
commit 4266ffa274
23 changed files with 28 additions and 28 deletions
@@ -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