mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
13 lines
234 B
Rust
13 lines
234 B
Rust
// This test ensures that the proc-macro fails if two arguments are not separated.
|
|
|
|
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(
|
|
source = r###"{{e!{ r#""#r" \ "}}}"###,
|
|
ext = "html"
|
|
)]
|
|
struct Example;
|
|
|
|
fn main() {}
|