Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
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"
}