Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.GenericTypeTest.test1387 - 10 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 22 builds (Since #111 )
Took 1.1 sec.

Error Message

test1387 - Javac found error(s) but Eclipse did not find any.
----------- Expected ------------

------------ but was ------------
X.java:4: warning: [static] static variable should be qualified by type name, IA, instead of by an expression\n
  System.out.println(this.t.baz);\n
                           ^\n
X.java:4: error: IA is not public in p; cannot be accessed from outside package\n
  System.out.println(this.t.baz);\n
                         ^\n
1 error\n
1 warning\n

--------- Difference is ----------
 expected:<[]> but was:<[X.java:4: warning: [static] static variable should be qualified by type name, IA, instead of by an expression\n
  System.out.println(this.t.baz);\n
                           ^\n
X.java:4: error: IA is not public in p; cannot be accessed from outside package\n
  System.out.println(this.t.baz);\n
                         ^\n
1 error\n
1 warning\n
]>

Stacktrace

junit.framework.ComparisonFailure: 
test1387 - Javac found error(s) but Eclipse did not find any.
----------- Expected ------------

------------ but was ------------
X.java:4: warning: [static] static variable should be qualified by type name, IA, instead of by an expression\n
		System.out.println(this.t.baz);\n
		                         ^\n
X.java:4: error: IA is not public in p; cannot be accessed from outside package\n
		System.out.println(this.t.baz);\n
		                       ^\n
1 error\n
1 warning\n

--------- Difference is ----------
 expected:<[]> but was:<[X.java:4: warning: [static] static variable should be qualified by type name, IA, instead of by an expression\n
		System.out.println(this.t.baz);\n
		                         ^\n
X.java:4: error: IA is not public in p; cannot be accessed from outside package\n
		System.out.println(this.t.baz);\n
		                       ^\n
1 error\n
1 warning\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.GenericTypeTest.test1387(GenericTypeTest.java:48710)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.GenericTypeTest#test1387 - 10
X.java [
public class X<T extends AA & p.IB> {
	T t;
	void foo() {
		System.out.println(this.t.baz);
	}
	public static void main(String[] args) {
		X<CC> xcc = new X<CC>();
		xcc.t = new CC();
		xcc.foo();
	}
}
class AA {
	void bar() {}
}
class CC extends AA implements p.IB {
}

]
p/IB.java [
package p;
interface IA {
	Object baz = "done";
}
public interface IB extends IA {
}

]


Full results sent to /tmp/comptest/run.1584245034298/10.0.2_20200315_040443.txt

Standard Error

--- javac err: ---
X.java:4: warning: [static] static variable should be qualified by type name, IA, instead of by an expression
		System.out.println(this.t.baz);
		                         ^
X.java:4: error: IA is not public in p; cannot be accessed from outside package
		System.out.println(this.t.baz);
		                       ^
1 error
1 warning

----------------------------------------