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