1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

parser: disallow or{} block for non-optionals

This commit is contained in:
Simon Heuser
2019-10-12 16:53:53 +02:00
committed by Alexander Medvednikov
parent 336e82d162
commit 85c05b6822
2 changed files with 18 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ fn err_call(ok bool) ?int {
fn ret_none() ?int {
//return error('wtf') //none
return none
}
}
fn test_option_for_base_type_without_variable() {
val := err_call(true) or {
@@ -30,15 +30,19 @@ fn test_option_for_base_type_without_variable() {
val2 := ret_none() or {
println('yep')
return
}
println('nice')
println(val2)
}
println('$val2 should have been `none`')
assert false
// This is invalid:
// x := 5 or {
// return
// }
}
fn test_if_opt() {
if val := err_call(false) {
assert val == 42
}
}
assert 1 == 1
println('nice')
}
}