renamed all modules
This commit is contained in:
35
testdata/src/main/java/data/SimpleClassFour.java
vendored
Normal file
35
testdata/src/main/java/data/SimpleClassFour.java
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
package data;
|
||||
|
||||
class SimpleClassFour {
|
||||
{
|
||||
System.out.println("clinit!");
|
||||
}
|
||||
|
||||
public int boo;
|
||||
|
||||
public static String s;
|
||||
|
||||
public SimpleClassFour(int i) {
|
||||
}
|
||||
|
||||
public SimpleClassFour(String d) {
|
||||
}
|
||||
|
||||
void boo() {
|
||||
}
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
private static void foo() {
|
||||
}
|
||||
|
||||
public String goo(int i, double d, String p) {
|
||||
return p;
|
||||
}
|
||||
|
||||
public static int hoo(long l) {
|
||||
return new Long(l).intValue();
|
||||
}
|
||||
|
||||
public static void woo() throws RuntimeException, IllegalStateException {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user