Skip to content
Permalink
Branch: master
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
26 lines (21 sloc) 182 Bytes
enum E1 {
}
enum E2<T> {
}
enum E3 {
X
}
enum E4 {
X,
}
enum E5 {
A,
B = 92,
C {
a: u32,
pub b: f64,
},
F {},
D(u32,),
E(),
}
You can’t perform that action at this time.