aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/testsrc_j8/Parameters.java
blob: 660e5abf1aa41c88a048868b7662bf4b23ae602e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class Parameters {
  public void foo(String abc,int def, String... ghi) {
  }

  public void bar(Parameters this, String abc) { 
  }

  class Inner {
    public Inner(String x) {
    }
  }
  enum Color { RED, GREEN, BLUE; }
}