aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/Example_param5_expected.java.txt
blob: f883e128e26205dba3fac8a57218fee0cf63eadc (plain)
1
2
3
4
5
6
// This is my class, with my comment
class A {
    int foo(int p1, char p2) {
        return p1;
    }
}