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: 3885ff0409d21d9f4ceab54013b1ef4914e85316 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package javadoc.testBug52908unicode;
public class X {
	/**
	 * Text element starting with a
	 * \u007b caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x1;
	/**
	 * Text element ending with a \u007d
	 * caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x2;
	/**
	 * Text element starting with a
	 * \u007d caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x3;
	/**
	 * Text element ending with a \u007b
	 * caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x4;
	/**
	 * Text element starting with
	 * \u007b and ending with \u007d
	 * caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x6;
	/**
	 * Text element starting with
	 * \u007d and ending with \u007b
	 * caused troubles in its position
	 * if the bug is not fixed
	 * @see Object
	 */
	Object x7;
}

Back to the top