v2 / vlib / v / debug / tests / smartcast.vv
9 lines · 8 sloc · 81 bytes · 9f6448e30e3af6fddc4998652d27ad4e060fe2f3
Raw
1fn smartcast(a ?int) {
2 if a != none {
3 $dbg;
4 }
5}
6
7fn main() {
8 smartcast(1)
9}
10