use inter-language modifier fix inside java analysis IDEA-202508

This commit is contained in:
Dmitry Batkovich
2018-12-07 08:34:41 +03:00
parent 33098b6300
commit b81af4a9d6
25 changed files with 143 additions and 64 deletions
@@ -1,4 +1,4 @@
// "Make 'i' static" "true"
// "Make 'a.i' static" "true"
import java.io.*;
class a {
@@ -1,4 +1,4 @@
// "Make 'foo' static" "true"
// "Make 'F.foo' static" "true"
abstract class F {
static void foo() {
}
@@ -1,4 +1,4 @@
// "Make 'f' static" "true"
// "Make 'Foo.f' static" "true"
public class Foo {
int g;
static int f;
@@ -1,4 +1,4 @@
// "Make 'i' static" "true"
// "Make 'a.i' static" "true"
import java.io.*;
class a {
@@ -1,4 +1,4 @@
// "Make 'foo' static" "true"
// "Make 'F.foo' static" "true"
abstract class F {
abstract void foo();
}
@@ -1,4 +1,4 @@
// "Make 'f' static" "true"
// "Make 'Foo.f' static" "true"
public class Foo {
int g,f;
static void foo() {