Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
repl
/
regressions
/
kt6843.repl
blob: b428a31dcad926b55550133cc3e39967865c3068 [
file
] [
log
] [
blame
]
>>>
data
class
Person
(
val name
:
String
)
>>>
var
x
:
String
?
=
"hello"
>>>
val y
=
x
?.
let
{
Person
(
it
)
}
>>>
y
Person
(
name
=
hello
)