Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
incompleteHierarchyMissingInterface
/
source.kt
blob: 26f84827f2c45c69e121bbe98d17cda176d6fc1f [
file
] [
log
] [
blame
]
import
test
.*
public
class
C
{
fun test
()
{
D
.
m
(
B
.
n
())
}
}
public
class
D
{
companion
object
{
@JvmStatic
@Suppress
(
"UNUSED_PARAMETER"
)
fun m
(
o
:
Any
?)
{}
}
}