Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
LocalNothingFun.kt
blob: 404a4c1781660cbe26f3ec37f93f24034b0ad26c [
file
]
fun foo
(
p
:
String
?,
p1
:
Any
?)
{
if
(
p1
==
null
)
return
fun localError
():
Nothing
=
throw
Exception
()
if
(
p
==
null
)
{
localError
()
}
<caret>
p
.
length
}