Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/grammar/expressions/atom.rs')
-rw-r--r--crates/parser/src/grammar/expressions/atom.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/parser/src/grammar/expressions/atom.rs b/crates/parser/src/grammar/expressions/atom.rs
index cabdd74b09..bc7db630d1 100644
--- a/crates/parser/src/grammar/expressions/atom.rs
+++ b/crates/parser/src/grammar/expressions/atom.rs
@@ -320,6 +320,10 @@ fn builtin_expr(p: &mut Parser<'_>) -> Option<CompletedMarker> {
// builtin#naked_asm("");
// }
parse_asm_expr(p, m)
+ } else if p.eat_contextual_kw(T![include_bytes]) {
+ // test include_bytes
+ // fn foo() { builtin # include_bytes }
+ Some(m.complete(p, INCLUDE_BYTES_EXPR))
} else {
m.abandon(p);
None