Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
lastStatementNonUnitMethod.kt
blob: d485239f41b8e6befcb41a90cdf1a0d594ffc6fa [
file
] [
log
] [
blame
]
// ERROR: A 'return' expression required in a function with a block body ('{...}')
fun foo
():
Int
{
val x
=
2
<caret>
if
(
x
>
1
)
{
bar
()
}
}
fun bar
(){}