blob: 76d6eda88538ea9cf01d10670477d43f9c20b008 (
plain)
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
|
// #1535
#![feature(struct_field_attributes)]
struct Foo {
bar: u64,
#[cfg(test)]
qux: u64,
}
fn do_something() -> Foo {
Foo {
bar: 0,
#[cfg(test)]
qux: 1,
}
}
fn main() {
do_something();
}
// #1462
struct Foo {
foo: usize,
#[cfg(feature="include-bar")]
bar: usize,
}
fn new_foo() -> Foo {
Foo {
foo: 0,
#[cfg(feature="include-bar")]
bar: 0,
}
}
// #2044
pub enum State {
Closure(#[cfg_attr(feature = "serde_derive", serde(state_with = "::serialization::closure"))] GcPtr<ClosureData>),
}
struct Fields(
#[cfg_attr(feature = "serde_derive", serde(state_with = "::base::serialization::shared"))] Arc<Vec<InternedStr>>,
);
// #2309
pub struct A {
#[doc="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"]
pub foos:Vec<bool>
}
|