mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 17:13:48 +00:00
23 lines
243 B
Rust
23 lines
243 B
Rust
// #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();
|
|
}
|