diff options
Diffstat (limited to 'askama_derive/src')
-rw-r--r-- | askama_derive/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs index cf5ead9..2c02cb5 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -54,7 +54,7 @@ fn build_template(ast: &syn::DeriveInput) -> String { } let ctx = &contexts[&input.path]; - let heritage = if !ctx.blocks.is_empty() { + let heritage = if !ctx.blocks.is_empty() || ctx.extends.is_some() { Some(Heritage::new(ctx, &contexts)) } else { None |