Add regression test for KT-17640
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
open class AbstractStuff() {
|
||||
inline suspend fun<reified T> hello(value: T): T = println("Hello, ${T::class}").let { value }
|
||||
}
|
||||
|
||||
class Stuff: AbstractStuff() {
|
||||
suspend fun foo() = hello(40)
|
||||
}
|
||||
Reference in New Issue
Block a user