v2 / vlib / v / tests / aliases / alias_bool_not_op_test.v
7 lines · 6 sloc · 98 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1type JBoolean = bool
2
3fn test_alias_not_op() {
4 a := JBoolean(false)
5 b := !a
6 assert b == true
7}
8