Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
constructors
/
nestedClassNameInParameterDefaults3.java
blob: 7ead1b36cbde401e650bece8617aab5294d22d65 [
file
] [
log
] [
blame
]
package
pack
;
import
static
pack
.
A
.
Nested
;
class
A
{
A
(
Nested
nested
)
{
}
A
()
{
this
(
new
Nested
(
Nested
.
FIELD
));
}
static
class
Nested
{
Nested
(
int
p
){}
public
static
final
int
FIELD
=
0
;
}
}
class
B
{
Nested
nested
;
}