Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/mir/lower.rs')
| -rw-r--r-- | crates/hir-ty/src/mir/lower.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/hir-ty/src/mir/lower.rs b/crates/hir-ty/src/mir/lower.rs index 4e52c1f7c3..6499c703a8 100644 --- a/crates/hir-ty/src/mir/lower.rs +++ b/crates/hir-ty/src/mir/lower.rs @@ -1397,6 +1397,7 @@ impl<'a, 'db> MirLowerCtx<'a, 'db> { Ok(Some(current)) } Expr::Underscore => Ok(Some(current)), + Expr::IncludeBytes => not_supported!("include_bytes!()"), } } |