Refactor and improve Objective-C override checks (#2907)

This commit is contained in:
SvyatoslavScherbina
2019-04-24 15:01:47 +03:00
committed by GitHub
parent 73d5ac8120
commit 14fb86d487
4 changed files with 67 additions and 22 deletions
@@ -299,6 +299,14 @@ fun testVarargs() {
format = "%d %d %d"
).formatted
)
assertEquals(
"7",
TestVarargsSubclass.stringWithFormat(
"%d",
7
)
)
}
fun testOverrideInit() {