Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
overloads
/
Abstract.kt
blob: 40424a09df83056635470e72c06837cd1f18d196 [
file
] [
log
] [
blame
]
internal
abstract
class
A
{
abstract
fun foo
(
p
:
Int
)
fun foo
()
{
foo
(
1
)
}
}