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: f59c5e74b89352c3fb5576926706f2b179457d51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package j2;
/**
 * @see Bug47968
 * @see Bug47968#x
 * @see Bug47968#Bug47968(String)
 * @see Bug47968#foo(int)
 */
public class Bug47968s {
	/**
	 * @see Bug47968
	 * @see Bug47968#x
	 * @see Bug47968#Bug47968(String)
	 * @see Bug47968#foo(int)
	 */
	public int y;
	/**
	 * @see Bug47968
	 * @see Bug47968#x
	 * @see Bug47968#Bug47968(String)
	 * @see Bug47968#foo(int)
	 */
	public Bug47968s() {}
	/**
	 * @see Bug47968
	 * @see Bug47968#x
	 * @see Bug47968#Bug47968(String)
	 * @see Bug47968#foo(int)
	 */
	public void bar() {}
	}

Back to the top