summaryrefslogtreecommitdiff
path: root/plugins/groovy/testdata/refactoring/pullUp/DocCommentInMethod_after.groovy
blob: d68f5fdd63cbee7fa65badc55802b1d0ecd79435 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Super {

    /**
     * doc
     */
    def foo() {}
}

class Foo extends Super {

}