v2 / vlib / v / slow_tests / valgrind / option_reassigned.v
7 lines · 6 sloc · 106 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1import os
2
3fn main() {
4 mut a := 'abc'
5 a = os.find_abs_path_of_executable('ls') or { '' }
6 eprintln(a)
7}
8