salsa/tests/compile-fail/salsa_fields_incompatibles.rs

14 lines
197 B
Rust
Raw Normal View History

// Banned field name: `from`
#[salsa::input]
struct InputWithBannedName1 {
from: u32,
}
// Banned field name: `new`
#[salsa::input]
struct InputWithBannedName2 {
new: u32,
}
2024-07-19 12:05:39 +00:00
fn main() {}