Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
fir
/
analysis-tests
/
testData
/
resolve
/
classCallInLambda.kt
blob: 419435b2998bb2d66132fc985ca07587e65e7ef5 [
file
]
// WITH_STDLIB
// DUMP_CFG
import
kotlin
.
reflect
.
KClass
fun test
(
x
:
String
):
KClass
<*>
{
return
x
.
let
{
it
::
class
}
}