blob: a8cd2356967b256a9cbeeff364f0cef0b0937991 [file] [log] [blame]
//renaming A.m to fred
package p;
public class A{
private void fred() {
}
void k(){
A a= new A();
a
.
fred ();
}
}