-
-
Notifications
You must be signed in to change notification settings - Fork 658
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[jvm] fixed Reflect.compare for different number types (closes #10350)
- Loading branch information
1 parent
2ce87e7
commit 3cb7fe4
Showing
2 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package unit.issues; | ||
|
||
class Issue10350 extends Test { | ||
function test() { | ||
t(Reflect.compare(0.1, 0.2) < 0); | ||
t(Reflect.compare(0.2, 0.1) > 0); | ||
} | ||
} |