summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t107/before/test.java
blob: 65ad21055710b361eabe035c71281f0b7c3842b4 (plain)
1
2
3
4
5
6
public class Test<T extends Number> {
  T t;
  void foo() {
    int i = t.intValue();
  }
}