KT-38027 Support Code Vision feature in Kotlin
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// MODE: inheritors
|
||||
|
||||
<# block [ 1 Implementation] #>
|
||||
interface SomeInterface {
|
||||
<# block [ 1 Override] #>
|
||||
fun interfaceMethodA() = 10
|
||||
}
|
||||
|
||||
class SomeClass : SomeInterface {
|
||||
override fun interfaceMethodA() = 20 // <== (1)
|
||||
}
|
||||
Reference in New Issue
Block a user