Skip to content

Commit

Permalink
Remove workaround for fsharp/fsharp#190 in numerics tests.
Browse files Browse the repository at this point in the history
The Mono bug this is working around was fixed in late 2013, and is in the Mono 3.2 series
that F# already strongly recommends.
  • Loading branch information
RAOF committed Jul 8, 2014
1 parent 79256a0 commit 28db078
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,7 @@ let negative64s =
(-1152921504606846977L , -1152921504606846976L , -1152921504606846975L);
(-2305843009213693953L , -2305843009213693952L , -2305843009213693951L);
(-4611686018427387905L , -4611686018427387904L , -4611686018427387903L);
#if MONO // https://github.com/fsharp/fsharp/issues/190
(9223372036854775807L , -9223372036854775808L , -9223372036854775807L); (* MinValue is -2^63 *)
#else
(999L , -9223372036854775808L , -9223372036854775807L); (* MinValue is -2^63 *)
#endif
(999L , 999L , 999L)]
#if Portable
#else
Expand Down

0 comments on commit 28db078

Please sign in to comment.