blob: af7c82f2a1a201d5e015ba82c24257c8d4f6630e [file] [log] [blame]
class Test {
/**
* foo comment
* @param s long description
* @param s1 long1 description1
*/
void foo(String s, String s1) {
bar(s, s1);
}
void bar(String s, String s1){}
}