blob: 622f9640d0d111b05914059b5db3fe9876c93296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#![feature(default_struct_values)]
// Test for now that nightly default field values are left alone for now.
struct Foo {
default_field: Spacing = /* uwu */ 0,
}
struct Foo2 {
#[rustfmt::skip]
default_field: Spacing = /* uwu */ 0,
}
a_macro!(
struct Foo2 {
default_field: Spacing = /* uwu */ 0,
}
);
|