mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Fixes some reports of EA-622822 GitOrigin-RevId: 2e5fd359640ebc500403c0f5108e678380c2584e
10 lines
139 B
Java
10 lines
139 B
Java
// "Make 'I.foo()' public" "true-preview"
|
|
interface I {
|
|
private void foo() { }
|
|
}
|
|
|
|
class A implements I {
|
|
{
|
|
this.fo<caret>o();
|
|
}
|
|
} |