From 3d52283b74573af509deb3c47cbabf7b7b58b1dd Mon Sep 17 00:00:00 2001 From: max Date: Wed, 13 Dec 2023 15:34:54 +0200 Subject: Add automatic borrowing to let statement Signed-off-by: max --- testing/tests/simple.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'testing/tests') diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index f0f0a26..55353f5 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -484,3 +484,17 @@ fn test_num_literals() { "[90, -90, 90, 2, 56, 240, 10.5, 10.5, 100000000000, 105000000000]", ); } + +#[derive(askama::Template)] +#[template(source = "{% let word = s %}{{ word }}", ext = "html")] +struct LetBorrow { + s: String, +} + +#[test] +fn test_let_borrow() { + let template = LetBorrow { + s: "hello".to_owned(), + }; + assert_eq!(template.render().unwrap(), "hello") +} -- cgit