Welcome to mirror list, hosted at ThFree Co, Russian Federation.

java-nested-field « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d92d3ec6887f86cd89798cff41fce41eefd6067d (plain)
1
2
3
4
5
6
class MyExample {
    private static class RIGHT {
        // change an inner class field
        String inner = "ChangeMe";
    }
}