summaryrefslogtreecommitdiff
path: root/plugins/groovy/testdata/refactoring/pullUp/ImplementsList2_after.groovy
blob: d6c79355b72d895416e94aed0da7928195d74b38 (plain)
1
2
3
4
5
6
interface I1 {}
interface I2 {}

class Super implements I2 {}

class Foo extends Super implements I1 {}