Peter
03/26/2023, 7:55 AMinherits conflicting members: exec, exec
on a class I inherit. The two methods in the base class (part of JupyterReplTestCase
) are:
fun exec(code: Code): Any? {
return execEx(code).renderedValue
}
@JvmName("execTyped")
inline fun <reified T : Any> exec(code: Code): T {
val res = exec(code)
res.shouldBeInstanceOf<T>()
return res
}
P.S Could very well be a compatibility issue since JupyterReplTestCase
is compiled against on 1.8.0-Beta as far as I can tell and I run it against 1.8.20-RC2Ivan Kubyshkin [JetBrains]
03/27/2023, 6:06 AMPeter
03/27/2023, 11:11 AMmvn compile
generates the compile error.Ivan Kubyshkin [JetBrains]
03/28/2023, 10:16 AMkirillrakhman
04/03/2023, 4:48 PM