mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-16 18:20:33 +00:00
18 lines
644 B
Text
18 lines
644 B
Text
|
error[E0624]: associated function `field` is private
|
||
|
--> tests/compile-fail/get-set-on-private-field.rs:29:11
|
||
|
|
|
||
|
7 | #[salsa::input(jar = Jar)]
|
||
|
| -------------------------- private associated function defined here
|
||
|
...
|
||
|
29 | input.field(&db);
|
||
|
| ^^^^^ private associated function
|
||
|
|
||
|
error[E0624]: associated function `set_field` is private
|
||
|
--> tests/compile-fail/get-set-on-private-field.rs:30:11
|
||
|
|
|
||
|
7 | #[salsa::input(jar = Jar)]
|
||
|
| -------------------------- private associated function defined here
|
||
|
...
|
||
|
30 | input.set_field(&mut db).to(23);
|
||
|
| ^^^^^^^^^ private associated function
|