Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
constructors
/
fieldsInitializedFromParams8.java
blob: 21b6b4e1396a59291f8bef9282df6114764305b7 [
file
] [
log
] [
blame
]
class
Base
{
Base
(
Object
o
,
int
l
){}
}
class
C
extends
Base
{
private
final
String
string
;
public
C
(
String
s
)
{
super
(
s
,
s
.
length
());
this
.
string
=
s
;
}
}