Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
conditions
/
ifs
/
ifexpr_with_option_result_test.v
11
lines
·
10
sloc
·
161 bytes
·
69b4b41273d5e8c8caa5ca75896b9ba402609bbd
Raw
1
fn
comptime_ret_result() !string {
2
return
$
if
debug {
3
'debug'
4
} $
else
{
5
'not debug'
6
}
7
}
8
9
fn
test_main() {
10
assert comptime_ret_result()! ==
'not debug'
11
}
12