mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
26 lines
1003 B
Plaintext
26 lines
1003 B
Plaintext
1 == 2 == 3
|
|
^~ unexpected '=='; '==' is a non-associative operator
|
|
^~ unexpected '==', expecting end-of-input
|
|
^~ unexpected '==', ignoring it
|
|
1 != 2 != 3
|
|
^~ unexpected '!='; '!=' is a non-associative operator
|
|
^~ unexpected '!=', expecting end-of-input
|
|
^~ unexpected '!=', ignoring it
|
|
1 === 2 === 3
|
|
^~~ unexpected '==='; '===' is a non-associative operator
|
|
^~~ unexpected '===', expecting end-of-input
|
|
^~~ unexpected '===', ignoring it
|
|
1 =~ 2 =~ 3
|
|
^~ unexpected '=~'; '=~' is a non-associative operator
|
|
^~ unexpected '=~', expecting end-of-input
|
|
^~ unexpected '=~', ignoring it
|
|
1 !~ 2 !~ 3
|
|
^~ unexpected '!~'; '!~' is a non-associative operator
|
|
^~ unexpected '!~', expecting end-of-input
|
|
^~ unexpected '!~', ignoring it
|
|
1 <=> 2 <=> 3
|
|
^~~ unexpected '<=>'; '<=>' is a non-associative operator
|
|
^~~ unexpected '<=>', expecting end-of-input
|
|
^~~ unexpected '<=>', ignoring it
|
|
|