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

30 lines
848 B
Plaintext
Raw Normal View History

2020-06-11 02:33:13 -04:00
error: Failed to compile template.
2021-04-06 08:48:46 -04:00
caused by: Rust Syntax Error (lex error)
2020-06-11 02:33:13 -04:00
file: unbalanced_brace.stpl
--> $DIR/unbalanced_brace.rs:9:10
|
2024-03-11 17:33:11 -04:00
9 | #[derive(RenderOnce)]
| ^^^^^^^^^^
2020-06-11 02:33:13 -04:00
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0422]: cannot find struct, variant or union type `UnclosedDelimiter` in this scope
--> $DIR/unbalanced_brace.rs:18:9
|
18 | UnclosedDelimiter {
| ^^^^^^^^^^^^^^^^^ not found in this scope
error[E0106]: missing lifetime specifier
--> $DIR/unbalanced_brace.rs:12:18
|
12 | players: Vec<Player>,
| ^^^^^^ expected named lifetime parameter
|
help: consider introducing a named lifetime parameter
|
11 | struct UnbalancedBrace<'a> {
12 | players: Vec<Player<'a>>,
|