Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
aliases
/
alias_bool_not_op_test.v
7
lines
·
6
sloc
·
98 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
type
JBoolean = bool
2
3
fn
test_alias_not_op() {
4
a := JBoolean(
false
)
5
b := !a
6
assert b ==
true
7
}
8