summaryrefslogtreecommitdiffstats
path: root/tests/bugs/pr72531/de/rohith/HelloWorld.java
blob: f2687aab94ded657a67fecf43a9fb1b63de3f5af (plain)
1
2
3
4
5
6
7
8
9
10
11
package de.rohith;
public class HelloWorld {

    public static void main(String[] args) {
        PrinterWorld p = new PrinterWorld();
        p.print(); 
        Integer i = p.returnInt();
        Integer[] intArray = p.returnArrayWithCloning();
        Integer[] array2 = p.returnArrayWithoutCloning();
    }
}