You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
351 B
20 lines
351 B
package pkg;
|
|
|
|
public class TestStaticNameClash {
|
|
public static String property;
|
|
|
|
public static void setProperty(String property) {
|
|
TestStaticNameClash.property = property;// 8
|
|
}// 9
|
|
}
|
|
|
|
class 'pkg/TestStaticNameClash' {
|
|
method 'setProperty (Ljava/lang/String;)V' {
|
|
1 6
|
|
4 7
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
8 <-> 7
|
|
9 <-> 8
|
|
|