rust/tests/target/struct-field-attributes.rs

63 lines
959 B
Rust
Raw Normal View History

2017-05-12 10:58:38 +02:00
// #1535
#![feature(struct_field_attributes)]
struct Foo {
bar: u64,
2018-01-11 08:53:13 +01:00
#[cfg(test)]
qux: u64,
2017-05-12 10:58:38 +02:00
}
fn do_something() -> Foo {
Foo {
bar: 0,
#[cfg(test)]
qux: 1,
}
}
fn main() {
do_something();
}
// #1462
struct Foo {
foo: usize,
2018-01-11 08:53:13 +01:00
#[cfg(feature = "include-bar")]
bar: usize,
}
fn new_foo() -> Foo {
Foo {
foo: 0,
#[cfg(feature = "include-bar")]
bar: 0,
}
}
2017-10-08 15:37:13 +02:00
// #2044
pub enum State {
Closure(
#[cfg_attr(
feature = "serde_derive",
serde(state_with = "::serialization::closure")
)]
2017-10-08 15:37:13 +02:00
GcPtr<ClosureData>,
),
}
struct Fields(
#[cfg_attr(
feature = "serde_derive",
serde(state_with = "::base::serialization::shared")
)]
2017-10-08 15:37:13 +02:00
Arc<Vec<InternedStr>>,
);
// #2309
pub struct A {
#[doc = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"]
pub foos: Vec<bool>,
}