8 lines
96 B
Java
8 lines
96 B
Java
package testdata;
|
|
|
|
public class A {
|
|
String hello() {
|
|
return "hello from A";
|
|
}
|
|
}
|