java-decompiler: tests moved

This commit is contained in:
Roman Shevchenko
2014-09-01 18:54:33 +04:00
parent d5fe121d1d
commit e629738a46
28 changed files with 467 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
package pkg;
public class TestExtendsList {
static <T extends Comparable<? super T>> T m1(T var0) {
return null;
}
static <T extends Object & Comparable<? super T>> T m2(T var0) {
return null;
}
}