mirror of
https://hub.spigotmc.org/stash/scm/spigot/fernflower.git
synced 2024-11-23 18:16:42 +00: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);
|
|
}
|
|
}
|