blob: 92f0b0c86593ff05bd581b791e8a7462fd85c980 [file] [log] [blame]
package test.tmp;
import org.testng.annotations.Test;
public class B {
// @Test
public void t() {
System.out.println("[B] test");
A a = new A();
// a.foo();
}
}