v2 / vlib / v / tests / scanner_and_and_not_test.v
5 lines · 5 sloc · 89 bytes · 7227c1d508dfd916fee8c16de69130eec0b48b92
Raw
1fn test_and_and_not_parses() {
2 ok1 := true
3 ok2 := false && !ok1
4 assert ok2 == false
5}
6