Skip to content

Commit

Permalink
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -82,6 +82,11 @@ public boolean equal(RubyBasicObject a, RubyBasicObject b) {
return a == b;
}

@Specialization
public boolean equal(RubyBasicObject a, boolean b) {
return false;
}

}

@CoreMethod(names = "=~", minArgs = 1, maxArgs = 1)
1 change: 0 additions & 1 deletion spec/truffle/tags/language/case_tags.txt

This file was deleted.

0 comments on commit 27b2756

Please sign in to comment.