summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/threadLocal/before7.java
blob: dfff0417b272e872d8f9adbac2c96ff88eaaecd7 (plain)
1
2
3
4
5
6
7
8
9
10
// "Convert to ThreadLocal" "true"
class X {
  private final byte[] <caret>bytes = new byte[10];

  byte foo(byte b) {
    bytes[0] = 1;
    foo(bytes[1])
    return bytes[2];
  }
}