Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
extension.kt
blob: 687afd4dc10f730750cd0883a2f5e778285fa24a [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
class
B
(
val a
:
Int
)
fun B
.
foo
()
=
this
.
a
fun box
():
String
{
assertEquals
(
42
,
B
(
42
).
foo
())
return
"OK"
}