Create subclass intention implemented #KT-8473 Fixed
Can be used for implementing interfaces / abstract classes / sealed classes or extending open classes
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// "Implement interface" "true"
|
||||
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
||||
|
||||
class Container {
|
||||
interface <caret>Base {
|
||||
val x: Boolean
|
||||
|
||||
val y: Double
|
||||
get() = 3.14
|
||||
|
||||
fun foo(): String = ""
|
||||
|
||||
fun bar(z: Int): String
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user