Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
repl
/
controlFlow
/
incompleteIf.repl
blob: aa8d137934d3484da53284353a46794d590ffb86 [
file
]
>>>
if
(
false
)
42
>>>
if
(
true
)
42
>>>
""
+
(
if
(
true
)
42
)
error
:
'if'
must have both main
and
'else'
branches
if
used
as
an expression
""
+
(
if
(
true
)
42
)
^