mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 22:41:13 +00:00
56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
error: expected `endfor` to terminate `for` node, found `end`
|
|
--> <source attribute>:1:23
|
|
" end %}"
|
|
--> tests/ui/wrong-end.rs:4:21
|
|
|
|
|
4 | #[template(source = "{% for _ in 1..=10 %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endmacro` to terminate `macro` node, found `end`
|
|
--> <source attribute>:1:20
|
|
" end %}"
|
|
--> tests/ui/wrong-end.rs:8:21
|
|
|
|
|
8 | #[template(source = "{% macro test() %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endfilter` to terminate `filter` node, found `end`
|
|
--> <source attribute>:1:20
|
|
" end %}"
|
|
--> tests/ui/wrong-end.rs:12:21
|
|
|
|
|
12 | #[template(source = "{% filter upper %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endmatch` to terminate `match` node, found `end`
|
|
--> <source attribute>:1:30
|
|
"end %}"
|
|
--> tests/ui/wrong-end.rs:16:21
|
|
|
|
|
16 | #[template(source = "{% match () %}{% when () %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endblock` to terminate `block` node, found `end`
|
|
--> <source attribute>:1:18
|
|
" end %}"
|
|
--> tests/ui/wrong-end.rs:20:21
|
|
|
|
|
20 | #[template(source = "{% block body %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endif` to terminate `if` node, found `end`
|
|
--> <source attribute>:1:15
|
|
" end %}"
|
|
--> tests/ui/wrong-end.rs:24:21
|
|
|
|
|
24 | #[template(source = "{% if true %}{% end %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: expected `endif` to terminate `if` node, found `endfor`
|
|
--> <source attribute>:1:15
|
|
" endfor %}"
|
|
--> tests/ui/wrong-end.rs:28:21
|
|
|
|
|
28 | #[template(source = "{% if true %}{% endfor %}", ext = "txt")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|