aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/ParamAnno.java
blob: 8277d9b1fc7a54364345722f56733f3e63d01b58 (plain)
1
2
3
4
5
6
7
8
9
package test3;

public class ParamAnno {
    public int foo(int i, String s, ParamAnno pa, double d) {
        return i + 1;
    }

    public void bar() {} 
}