Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
unused_last_expr_stmt_in_if.vv
18
lines
·
16
sloc
·
147 bytes
·
556244576dc2b45e7b711be3515bf4b0dcc22b10
Raw
1
enum MyEnum {
2
xx
3
yy
4
zz
5
}
6
7
struct Abc {
8
mut:
9
mode MyEnum
10
}
11
12
fn main() {
13
a := Abc{}
14
if a.mode == .zz {
15
println('hello')
16
a.mode == .yy
17
}
18
}
19