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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
struct StructA<T> /* comment 1 */ {
t: T,
}
struct StructB<T> /* comment 2 */;
struct StructC /* comment 3 */;
struct StructD /* comment 4 */ {
t: usize,
}
struct StructE<T>
/* comment 5 */
where
T: Clone,
{
t: usize,
}
struct StructF
/* comment 6 */
where
T: Clone,
{
t: usize,
}
struct StructG<T>
/* comment 7 */
// why a line comment??
{
t: T,
}
struct StructH<T>
/* comment 8 */
// why a line comment??
where
T: Clone,
{
t: T,
}
enum EnumA<T> /* comment 8 */ {
Field(T),
}
enum EnumB /* comment 9 */ {
Field,
}
// Issue 2781
struct StructX1<T>
// where
// T: Clone
{
inner: String,
}
struct StructX2<
T,
U: Iterator<Item = String>,
V: Iterator<Item = String>,
W: Iterator<Item = String>,
>
// where
// T: Clone
{
inner: String,
}
|