4cd7193047
#KT-11018 Fixed
9 lines
170 B
Plaintext
Vendored
9 lines
170 B
Plaintext
Vendored
// PARAM_TYPES: T
|
|
// PARAM_DESCRIPTOR: value-parameter t: T defined in B.<init>
|
|
interface T
|
|
|
|
class A(a: Int, b: Int): T
|
|
|
|
class B(t: T): T by t(t)
|
|
|
|
private fun t(t: T) = t |