aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/Inner.java
blob: bfc9504425b8ec59adaa1a6ad28835ab700885e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test2;

@SuppressWarnings("unused")
public class Inner {
    public void sample() throws Exception {
        java.util.Properties props = new java.util.Properties();
        test2.Inner2.Child ace = null;
        test2.Inner2 agd = new test2.Inner2(props, ace);
    }
    public static void main(String args[]) {
        System.out.println("Inner");
    }
}