aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/tests/repl/option.repl.skip
blob: dbd223f449e9db1a90d25b35effcfd5cc9aaaf35 (plain)
1
2
3
4
5
6
7
fn foo() ?bool {return true}	
fn main() {
	foo()? // only works in main()
	println('done')
}	
===output===
done