mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 12:34:21 +00:00
18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
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
|
|
|