mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
13 lines
197 B
Rust
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() {}
|