summaryrefslogtreecommitdiffstats
path: root/test/Java/java_version_image/src6/TestSCons.java
blob: abf2077de1896d0a01c51167b31cb17390cc3437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT
//
// Copyright The SCons Foundation

class test
{
    test()
    {
        super();
        new inner();
    }

    static class inner
    {
        private inner() {}
    }
}