001    package railo.transformer.bytecode.reflection;
002    
003    public class Test {
004            public void testVoid(int a,Integer b){
005                    Class x=Integer.class;
006                    if(x==null)return;
007            }
008            public Class testClass(int a,Integer b){
009                    return int[].class;
010            }
011            public void testVoid2(int[] c,Integer[] d) throws InterruptedException{
012                    wait();
013            }
014            public void testVoid23(){
015                    
016            }
017            public Object testInt(){return true;}
018    }