[tests] moves move default package tests in a dedicated class

This commit is contained in:
Roman Shevchenko
2017-11-08 08:49:52 +01:00
parent 6c5bacd425
commit b3b6ff5ac9
8 changed files with 32 additions and 58 deletions
@@ -1,5 +0,0 @@
public class Test {
public Test(int i) {
new x();
}
}
@@ -1,7 +0,0 @@
package x;
import x.n.*;
class Foos2 {
Test t = new Test();
}
@@ -1,5 +0,0 @@
package x;
class InvalidUse {
<error descr="Cannot resolve symbol 'Test'">Test</error> t = null;
}
@@ -1,7 +0,0 @@
package x;
import x.n.Test;
class Foos {
Test t = new Test();
}
@@ -1,2 +0,0 @@
package x.n;
public class Test {}