Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: ceafa1f3e18e315892f52c43b99411b3c3f80ecc (plain) (blame)
1
2
3
4
5
6
7
8
9
package javadoc.testBug51911;
/**
 * @see #foo
 */
public class TestValid3 {
	public int foo;
	public void foo() {}
	public void foo(String str) {}
}

Back to the top