Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
innerClassDelegatingPrimary.kt
blob: fa09805ddba321b5793b3ae558508ff281d68615 [
file
]
class
A
{
inner
class
B
(
arg
:
String
)
{
<caret>
constructor
(
arg
:
Int
):
this
(
""
)
{}
}
}