Converter tests:
Change test data files extension to "java"
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
//file
|
||||
package test;
|
||||
|
||||
public class Short {
|
||||
public static Short valueOf(String value) {return new Short();}
|
||||
}
|
||||
|
||||
class Test {
|
||||
public static void test() {
|
||||
Short.valueOf("1");
|
||||
test.Short.valueOf("1");
|
||||
java.lang.Short.valueOf("1");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user