Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
classWithGenerics.kt
blob: 47c831fe91bb08597cf5fcd67c8f09b10620d134 [
file
]
class
A
<
T
>
{
constructor
(
x
:
T
)
{}
<caret>
constructor
(
block
:
()
->
T
):
this
(
block
())
{}
}