Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
copyKDoc.kt
blob: f4a1c7e3e8821c06891dbbf6becf1e0bb151f02d [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// COPY_DOC
abstract
class
A
{
/**
* @see TEST
*/
abstract
fun foo
()
}
class
B
:
A
()
{
<caret>
}