Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
psi
/
recovery
/
DeclarationAfterIncompleteElvis.kt
blob: 4e36338c19a9e2cf5e0dbbd172ab55388f18b496 [
file
] [
log
] [
blame
]
fun foo
(
x
:
Any
?)
{
x
?:
val foo
=
1
x
?:
fun bar
()
=
2
x
?:
fun
String
.()
=
3
}
class
A
{
val z
=
null
?:
val x
=
4
val y
=
null
?:
fun baz
()
=
5
val q
=
null
?:
fun
String
.()
=
6
}