Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
removeEmptyClassBody
/
nestedClassFollowedByMember.kt.after
blob: 195793b6aae5ec51f7b277859d4fa2cbb2aec51b [
file
]
class
A
(
val x
:
String
)
{
class
C
val foo
=
1
constructor
(
x
:
String
,
y
:
Int
)
:
this
(
x
)
{
}
}