Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
constructors
/
fieldsInitializedFromParams9.java
blob: 8f02554c38f58fb8ace9345a5ae3dcbfdf27dcf4 [
file
] [
log
] [
blame
]
class
C
{
private
final
String
string
;
public
C
(
String
s
,
int
a
)
{
this
.
string
=
s
;
}
public
C
(
String
s
)
{
this
(
s
,
s
.
length
());
}
}