mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 15:35:08 -04:00
15 lines
291 B
Plaintext
15 lines
291 B
Plaintext
package pkg;
|
|
|
|
public class TestClassNestedInitializer {
|
|
public String secret;
|
|
|
|
public void test() {
|
|
TestClassNestedInitializer var1 = new TestClassNestedInitializer() {
|
|
{
|
|
this.secret = "one";
|
|
}
|
|
};
|
|
System.out.println(var1.secret);
|
|
}
|
|
}
|