summaryrefslogtreecommitdiff
path: root/src/test/resources/LocalMethodDoc.java
blob: 789f17c1bdfa5cbaac98a302a1bd19faa8f9b735 (plain)
1
2
3
4
5
6
7
8
9
class LocalMethodDoc {
    void testMethod() {
        targetMethod();
    }

    /** A great method */
    void targetMethod() {
    }
}