sailfish/sailfish-tests/integration-tests/tests/fails/repeated_arguments.stderr

27 lines
1.0 KiB
Plaintext
Raw Normal View History

error: Argument `escape` was repeated.
--> $DIR/repeated_arguments.rs:6:12
2020-06-11 02:33:13 -04:00
|
6 | #[template(rm_whitespace = false)]
| ^^^^^^^^^^^^^
2020-06-11 02:33:13 -04:00
error[E0599]: no method named `render_once` found for struct `InvalidOptionValue` in the current scope
--> $DIR/repeated_arguments.rs:12:69
|
7 | struct InvalidOptionValue {
| ------------------------- method `render_once` not found for this
...
12 | println!("{}", InvalidOptionValue { name: "Hanako".to_owned() }.render_once().unwrap());
| ^^^^^^^^^^^ method not found in `InvalidOptionValue`
|
= help: items from traits can only be used if the trait is implemented and in scope
= note: the following trait defines an item `render_once`, perhaps you need to implement it:
2024-03-11 17:33:11 -04:00
candidate #1: `RenderOnce`
2020-06-11 02:33:13 -04:00
2024-03-11 17:33:11 -04:00
warning: unused import: `sailfish::RenderOnce`
2020-06-11 02:33:13 -04:00
--> $DIR/repeated_arguments.rs:1:5
|
2024-03-11 17:33:11 -04:00
1 | use sailfish::RenderOnce;
| ^^^^^^^^^^^^^^^^^^^^
2020-06-11 02:33:13 -04:00
|
= note: `#[warn(unused_imports)]` on by default