Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
implement
/
abstract.kt
blob: 47b5b8fbc73950e9cca38cebeacb6542df7a374d [
file
] [
log
] [
blame
]
// "Implement abstract class" "true"
// WITH_RUNTIME
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
private
abstract
class
<caret>
Base
{
abstract
var
x
:
Int
abstract
fun toInt
(
arg
:
String
):
Int
}