287e0909cc
#KT-57699 Fixed #KT-57939 Fixed
10 lines
132 B
Kotlin
Vendored
10 lines
132 B
Kotlin
Vendored
// CORRECT_ERROR_TYPES
|
|
|
|
@file:Suppress("UNRESOLVED_REFERENCE")
|
|
|
|
package test
|
|
|
|
abstract class A(val s: String)
|
|
|
|
class B : A(C.foo())
|