org.aspectj/tests/bugs/pr72531/de/rohith/HelloWorld.java
acolyer 82eae55131 fix for Bugzilla Bug 72531
declare warning warns at wrong points
2004-08-24 21:10:56 +00:00

12 lines
314 B
Java

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();
}
}