mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-14 09:01:11 +00:00
13 lines
423 B
Text
13 lines
423 B
Text
error[E0599]: no method named `set_id_one` found for struct `MyInput` in the current scope
|
|
--> tests/compile-fail/input_struct_id_fields_no_setters.rs:30:11
|
|
|
|
|
8 | struct MyInput {
|
|
| ------- method `set_id_one` not found for this struct
|
|
...
|
|
30 | input.set_id_one(1);
|
|
| ^^^^^^^^^^
|
|
|
|
|
help: there is a method `id_one` with a similar name
|
|
|
|
|
30 | input.id_one(1);
|
|
| ~~~~~~
|