Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
compiler
/
testData
/
klibABI
/
nonAbstractFunctionInInterfaceBecomesAbstract
/
lib2
/
l2.kt
blob: eb0b51ce193040dbfb6de74983a0c5e97e643266 [
file
]
package
lib2
import
lib1
.
A
class
B
:
A
{
override
fun bar
()
=
-
42
val unlinkedFunctionUsage
get
()
=
foo
()
}
class
B1
:
A
{
override
fun bar
()
=
-
42
val unlinkedFunctionUsage
=
foo
()
// Expected failure on class instance initialization.
}