mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-01 15:00:57 +00:00
9 lines
135 B
Rust
9 lines
135 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "{% let *x = 2 %}", ext = "html")]
|
|
struct WrongRefDeref;
|
|
|
|
fn main() {
|
|
}
|