v2 / vlib / v / debug / tests / comptime_smartcast.vv
12 lines · 11 sloc · 144 bytes · 9f6448e30e3af6fddc4998652d27ad4e060fe2f3
Raw
1fn comptime_smartcast[T](v T) {
2 $if v is int {
3 $dbg;
4 } $else {
5 $dbg;
6 }
7}
8
9fn main() {
10 comptime_smartcast(1)
11 comptime_smartcast(true)
12}
13