Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6547aa7bea7c116709b71c6a8d3fc3cb4f96c42b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package javadoc.testBug70892;
/**
 * {@value "invalid"}
 * {@value <a href="invalid">invalid</a>} invalid
 * {@value #field}
 * {@value #foo}
 * {@value #foo()}
 */
public class TestInvalid1 {
	int field;
	void foo() {}
}

Back to the top