summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t116/after/test.java
blob: 95ddfb44251f5c3de45daa6f26468fd68fca8dc5 (plain)
1
2
3
4
5
6
7
8
9
class Test {
  String str;

  void foo(String[] p) {
    for (String number : p) {
      number = str;
    }
  }
}