Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest.test408038b - 12 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #44 )
Took 0.84 sec.

Error Message

test408038b - Eclipse found warning(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
 public Y() {}\n
        ^^^\n
The constructor X.Y() is never used locally\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
 public Y() {}\n
        ^^^\n
The constructor X.Y() is never used locally\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
	public Y() {}\n
	       ^^^\n
The constructor X.Y() is never used locally\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
	public Y() {}\n
	       ^^^\n
The constructor X.Y() is never used locally\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest.test408038b(ProblemConstructorTest.java:376)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest#test408038b - 12
X.java [
public class X {
	private static class Y {
		static final int i = 10;
		public Y() {}
		public Y(int x) {System.out.println(x);}
   }

	public void zoo() {
		System.out.println(Y.i);
		Y y = new Y(5);
		System.out.println(y);
	}
}
]


Full results sent to /tmp/genie.jdt/comptest/run.1565715170219/12_20190813_125251.txt

Standard Error

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