Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
native
/
native.tests
/
testData
/
gc
/
basic0.kt
blob: 55b402fcbebcb7eb76950fb96098eca249a7daf0 [
file
]
import
kotlin
.
test
.*
class
A
{
var
field
:
B
?
=
null
}
class
B
(
var
field
:
Int
)
@Test
fun runTest
()
{
val a
=
A
()
a
.
field
=
B
(
2
)
}