vxx2 / vlib / v / checker / tests / unwrapped_option_infix.vv
5 lines · 4 sloc · 56 bytes · 90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1fn test() ?string {
2 return ''
3}
4
5println(test() == '')
6