Files
fernflower/testData/src/pkg/TestStaticNameClash.java
Roman Shevchenko 249903478c Cleanup (test data)
2016-04-21 15:49:29 +02:00

12 lines
204 B
Java

package pkg;
public class TestStaticNameClash {
public static String property;
public static void setProperty(final String property) {
TestStaticNameClash.property = property;
}
}