summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t114/before/test.java
blob: f73951e56432e8e8737f9a4c993062c2fd208c79 (plain)
1
2
3
4
5
6
7
8
9
public class Test {
  void method(Integer... p) {
    int i = p[0].intValue();
  }

  public void doSmth() {
    m(123);
  }
}