File: input_struct_unknown_attributes.rs

package info (click to toggle)
rust-salsa 0.23.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,424 kB
  • sloc: sh: 12; makefile: 2; javascript: 1
file content (9 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#[salsa::input]
struct InputWithUnknownAttrs {
    /// Doc comment
    field: u32,
    #[anything]
    field2: u32,
}

fn main() {}