Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
MutliDeclaration.kt
blob: 2202253e2685c9cbd1527982b4a2129e8b94a343 [
file
]
data
class
TestData
(
val first
:
Int
,
val second
:
String
?)
fun f
()
:
TestData
{}
fun test
(
b
:
String
?,
p
:
Int
)
{
if
(
p
>
0
)
{
val
(
a
,
b
)
=
f
()
print
(
b
!!.
size
)
}
else
{
print
(
b
!!.
size
)
}
<caret>
b
}