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