mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-27 13:00:57 +00:00
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
error: `extends` block must come first in a template
|
|
--> <source attribute>:3:2
|
|
" extends \"foo.html\" %}\n"
|
|
--> tests/ui/multiple_extends.rs:4:21
|
|
|
|
|
4 | #[template(source = r#"
|
|
| _____________________^
|
|
5 | | {% extends "let.html" %}
|
|
6 | | {% extends "foo.html" %}
|
|
7 | | "#, ext = "txt")]
|
|
| |__^
|