Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
kt21246a.kt
blob: f5917ba2ab85cf259b993a6d1d121a38cb649c59 [
file
]
// WITH_STDLIB
// TARGET_BACKEND: JVM
object
Test
{
fun test
()
=
{
createWildcard
(
"OK"
)
}.
let
{
it
()
}
@JvmStatic
private
fun createWildcard
(
s
:
String
)
=
Type
<
Any
>(
s
).
x
class
Type
<
T
>(
val x
:
String
)
}
fun box
()
=
Test
.
test
()