Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
convertToInstanceMethod
/
Interface.java
blob: 07f45aeefa0761cca3ba962918950acdba3a9050 [
file
]
interface
I
{
}
interface
J
extends
I
{
}
class
IImpl
implements
I
{
}
class
JImpl
implements
J
{
}
class
X
{
static
void
<
caret
>
method
(
int
i
,
I intf
)
{
System
.
out
.
println
(
"i = "
+
i
+
", intf = "
+
intf
);
}
{
J j
=
new
JImpl
();
method
(
0
,
j
);
}
}