dalvik/dx/tests/115-merge/testdata/Basic.java

11 lines
152 B
Java
Raw Permalink Normal View History

2025-08-25 08:26:03 +08:00
package testdata;
public class Basic {
String field = "this is a field";
String method() {
return "this is a method result";
}
}