FIR IDE: enable override implement test for FIR
This commit is contained in:
committed by
TeamCityServer
parent
00031c8eb1
commit
53aafbd7d9
@@ -0,0 +1,13 @@
|
||||
// From KT-1648
|
||||
interface A {
|
||||
val method:() -> Unit?
|
||||
}
|
||||
|
||||
fun some() : A {
|
||||
return object : A {
|
||||
override val method: () -> kotlin.Unit?
|
||||
get() = <selection><caret>TODO("Not yet implemented")</selection>
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: need better selection and caret
|
||||
Reference in New Issue
Block a user