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