[IR] update testdata: don't use "D" suffix on double constants

This commit is contained in:
Zalim Bashorov
2020-11-23 20:46:19 +03:00
committed by teamcityserver
parent 73771a3513
commit 57cb8f97e9
8 changed files with 26 additions and 22 deletions
+3 -2
View File
@@ -15,7 +15,7 @@ class A {
}
override operator fun get(): Double {
return 0.0D
return 0.0
}
}
@@ -34,7 +34,8 @@ class C : DoubleExpression {
}
override operator fun get(): Double {
return 0.0D
return 0.0
}
}
+2 -2
View File
@@ -15,7 +15,7 @@ class A {
}
override fun get(): Double {
return 0.0D
return 0.0
}
}
@@ -34,7 +34,7 @@ class C : DoubleExpression {
}
override fun get(): Double {
return 0.0D
return 0.0
}
}