v2 / vlib / v / tests / options / option_const_test.v
10 lines · 8 sloc · 137 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1const var = get_var()
2
3fn get_var() ?string {
4 return none
5}
6
7fn test_main() {
8 a := var or { 'default' }
9 assert dump(a) == 'default'
10}
11