salsa/tests/compile-fail/salsa_fields_incompatibles.rs
Niko Matsakis 68a3a7fceb wip
2024-07-19 08:05:39 -04:00

13 lines
197 B
Rust

// Banned field name: `from`
#[salsa::input]
struct InputWithBannedName1 {
from: u32,
}
// Banned field name: `new`
#[salsa::input]
struct InputWithBannedName2 {
new: u32,
}
fn main() {}