aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/break_outside_of_loop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/ui/break_outside_of_loop.rs')
-rw-r--r--testing/tests/ui/break_outside_of_loop.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/tests/ui/break_outside_of_loop.rs b/testing/tests/ui/break_outside_of_loop.rs
deleted file mode 100644
index ccbb0a9..0000000
--- a/testing/tests/ui/break_outside_of_loop.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-use askama::Template;
-
-#[derive(Template)]
-#[template(
- source = "Have a {%break%}, have a parsing error!",
- ext = "txt"
-)]
-struct MyTemplate;
-
-fn main() {
-}