blob: b53f5391a344573759f0263db5e33f14a47ce7dd [file] [log] [blame]
fn main() {
let Test {
#[cfg(feature = "test")]
x,
} = Test {
#[cfg(feature = "test")]
x: 1,
};
let Test {
#[cfg(feature = "test")]
// comment
x,
} = Test {
#[cfg(feature = "test")]
x: 1,
};
let Test {
// comment
#[cfg(feature = "test")]
x,
} = Test {
#[cfg(feature = "test")]
x: 1,
};
}