Skip to content

Commit

Permalink
Merge pull request #523 from vrurg/issue_2786
Browse files Browse the repository at this point in the history
Changes to conform with fix of use of Real type object in operators
  • Loading branch information
lizmat committed Mar 24, 2019
2 parents 1098b19 + d60f851 commit 32811b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S03-operators/misc.t
Expand Up @@ -127,9 +127,9 @@ is (2 Z 3), @z, 'joining of single items';

# comparison complains if either of its arguments is undefined - RT #93978
{
throws-like {Int < 0}, Exception;
#?rakudo todo "RT #93978"
throws-like {"cat" gt Str}, Exception;
CONTROL { when CX::Warn { die $_ } }
throws-like {Int < 0}, CX::Warn;
throws-like {"cat" gt Str}, CX::Warn;
}

# unicode operators are there
Expand Down

0 comments on commit 32811b1

Please sign in to comment.