blob: a80e3eb79a5a7a368e563ab8f2bd4e34ab705140 [file] [log] [blame]
public class Test {
void anotherMethod(String s);
String field;
/**
* @param anObject
* @param field
*/
static void method(Test anObject, String field) {
anObject.anotherMethod(field);
}
}