KT-40363 Handle non-octal int literals in for-loop conversions

- See EA-210233
- ^KT-40363 Fixed
This commit is contained in:
Roman Golyshev
2020-07-20 14:49:19 +03:00
parent cba671a3ef
commit be06c51aa7
5 changed files with 44 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
class A {
{
for (int i = 0; i < 0x12b; i++) {
}
}
}
+6
View File
@@ -0,0 +1,6 @@
internal class A {
init {
for (i in 0..0x12a) {
}
}
}