Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b7f6d40b562cc05b0c88d1051ff42fe8a146ea5
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
kt46554Generic.kt
blob: f62bc00bc614d251721675d44a4c80dff75a186f [
file
]
// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
var
result
=
"Fail"
OPTIONAL_JVM_INLINE_ANNOTATION
value
class
A
<
T
:
String
>(
val value
:
T
)
{
constructor
()
:
this
(
"OK"
as
T
)
init
{
result
=
value
}
}
fun box
():
String
{
A
<
String
>()
return
result
}