Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
kt44867.kt
blob: 6bced666b3e064e73037fbcbddfa8915ebd125f3 [
file
]
// WITH_STDLIB
open
class
BaseWrapper
<
T
>(
val response
:
T
)
class
Wrapper
(
result
:
Result
<
String
>)
:
BaseWrapper
<
Result
<
String
>>(
result
)
fun box
():
String
{
return
Wrapper
(
Result
.
success
(
"OK"
)).
response
.
getOrThrow
()
}