1package testdata;
2
3public class A {
4    String hello() {
5        return "hello from A";
6    }
7}
8