Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
14 additions
and 8 deletions.
@@ -1 +1,3 @@ | ||
fails:Fixnum#& | ||
fails:Fixnum#& returns self bitwise AND other | ||
fails:Fixnum#& returns self bitwise AND a Bignum | ||
fails:Fixnum#& raises a TypeError when passed a Float |
@@ -1 +1,2 @@ | ||
fails:Fixnum#| | ||
fails:Fixnum#| returns self bitwise OR other | ||
fails:Fixnum#| raises a TypeError when passed a Float |
@@ -1 +1,3 @@ | ||
fails:Fixnum#^ | ||
fails:Fixnum#^ returns self bitwise EXCLUSIVE OR other | ||
fails:Fixnum#^ returns self bitwise EXCLUSIVE OR a Bignum | ||
fails:Fixnum#^ raises a TypeError when passed a Float |