[VISUALIZER] Fix superTypes test

This commit is contained in:
Ivan Kylchik
2021-02-12 16:33:21 +03:00
committed by TeamCityServer
parent 05efb8c129
commit c678ad9eb9
2 changed files with 2 additions and 2 deletions
@@ -1,7 +1,7 @@
package org.jetbrains.kotlin.test
abstract class Base<T>(var x: T) {
fun replace(newValue: T)
abstract fun replace(newValue: T)
}
class Derived(var x: Int): Base<Int>(x) {