mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-18 17:14:38 +01:00
14 lines
139 B
Java
14 lines
139 B
Java
class test
|
|
{
|
|
test()
|
|
{
|
|
super();
|
|
new inner();
|
|
}
|
|
|
|
static class inner
|
|
{
|
|
private inner() {}
|
|
}
|
|
}
|