blob: e662b2544448218962d25772c4eb04eeb428c310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
true && not true
^~~~ expected a `(` after `not`
^~~~ unexpected 'true', expecting end-of-input
true || not true
^~~~ expected a `(` after `not`
^~~~ unexpected 'true', expecting end-of-input
true && not (true)
^ expected a `(` immediately after `not`
^ unexpected '(', expecting end-of-input
true && not
true
^~~~ expected a `(` after `not`
^~~~ unexpected 'true', expecting end-of-input
|