xref: /aosp_15_r20/dalvik/dx/tests/115-merge/testdata/Basic.java (revision 055d459012065f78d96b68be8421640240ddf631)
1 package testdata;
2 
3 public class Basic {
4 
5     String field = "this is a field";
6 
method()7     String method() {
8         return "this is a method result";
9     }
10 }
11