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
#![feature(staged_api)]
#![allow(unused)]
#![stable(since="1.0.0", feature="a")]
#[stable(since="1.0.0", feature="a")]
pub enum TestEnum {
#[stable(since="1.1.0", feature="x")]
FirstVariant,
#[stable(since="1.1.0", feature="x")]
SecondVariant {
#[stable(since="1.2.0", feature="v")]
field1: usize,
#[stable(since="1.3.0", feature="w")]
field2: usize,
},
#[stable(since="1.1.0", feature="x")]
ThirdVariant {
#[stable(since="1.4.0", feature="y")]
field1: usize,
#[stable(since="1.5.0", feature="z")]
field2: usize,
},
}