Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
extractInterface
/
addInterface.kt
blob: ce87666f240a64867bdab3cc961c0f654a71f1db [
file
] [
log
] [
blame
]
// NAME: X
// INFO: {checked: "true"}
interface
T
{}
open
class
A
// SIBLING:
class
<caret>
B
:
A
(),
T
{
// INFO: {checked: "true"}
fun foo
()
{
}
}