autofree: ?string test

pull/6349/head
Alexander Medvednikov 2020-09-10 13:41:30 +02:00
parent 03327e5161
commit 67cc515e74
1 changed files with 10 additions and 0 deletions

View File

@ -59,6 +59,16 @@ fn match_expr() string {
return res
}
fn optional_str() {
q := 'select'
s := 'x'
pos := s.index('query: $q') or {
println('exiting')
return
}
println(pos)
}
fn main() {
println('start')
foo()