Remove test exclusions after KT-45136 is fixed
diff --git a/libraries/stdlib/test/numbers/FloorDivModTest.kt b/libraries/stdlib/test/numbers/FloorDivModTest.kt
index b11a6d9..c42c0f9 100644
--- a/libraries/stdlib/test/numbers/FloorDivModTest.kt
+++ b/libraries/stdlib/test/numbers/FloorDivModTest.kt
@@ -15,7 +15,6 @@
     @Test
     fun intDivMod() {
         fun check(a: Int, b: Int, expectedFd: Int? = null, expectedMod: Int? = null) {
-            if (a == Int.MIN_VALUE && b == -1) return // do not test, due to native KT-45136
             val div = a / b
             val rem = a % b
             val fd = a.floorDiv(b)
@@ -51,7 +50,6 @@
     @Test
     fun longDivMod() {
         fun check(a: Long, b: Long, expectedFd: Long? = null, expectedMod: Long? = null) {
-            if (a == Long.MIN_VALUE && b == -1L) return // do not test, due to native KT-45136
             val div = a / b
             val rem = a % b
             val fd = a.floorDiv(b)