Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
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
)
^