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

autofree: ?string test

This commit is contained in:
Alexander Medvednikov 2020-09-10 13:41:30 +02:00
parent 03327e5161
commit 67cc515e74

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()