Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
dataClasses
/
unitComponent.kt
blob: b70b461ab919ed6041dc9e04b56b4a9451ed1357 [
file
]
data
class
A
(
val x
:
Unit
)
fun box
():
String
{
val a
=
A
(
Unit
)
return
if
(
a
.
component1
()
is
Unit
)
"OK"
else
"Fail ${a.component1()}"
}