Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
debug
/
tests
/
comptime_smartcast.vv
12
lines
·
11
sloc
·
144 bytes
·
9f6448e30e3af6fddc4998652d27ad4e060fe2f3
Raw
1
fn comptime_smartcast[T](v T) {
2
$if v is int {
3
$dbg;
4
} $else {
5
$dbg;
6
}
7
}
8
9
fn main() {
10
comptime_smartcast(1)
11
comptime_smartcast(true)
12
}
13