Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
comptime_if_option_string_test.vv
17
lines
·
15
sloc
·
212 bytes
·
90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1
module main
2
3
struct Foo {
4
a string
5
b ?string
6
}
7
8
fn test_main() {
9
$for field in Foo.fields {
10
print(field.typ)
11
$if field.typ is ?string {
12
print(1)
13
} $else $if field.typ is string {
14
print(2)
15
}
16
}
17
}
18