aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/duplicated_template_attribute.rs
blob: c0cd3e61b737e59d2a9cc14988e5c15a7ff24146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use askama::Template;

#[derive(Template)]
#[template(
    source = "🙂",
    ext = "txt"
)]
#[template(
    source = "🙃",
    ext = "txt"
)]
struct TwoEmojis;

fn main() {
}