aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/incorrect_path.rs
blob: f0c85cf93215806f905e1a69f7ebe7e7c7adfdf2 (plain) (blame)
1
2
3
4
5
6
7
8
use askama::Template;

#[derive(Template)]
#[template(path = "thisdoesnotexist.html")]
struct MyTemplate;

fn main() {
}