We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23cc690 commit 3583e0fCopy full SHA for 3583e0f
crates/ra_hir_expand/src/builtin_macro.rs
@@ -360,7 +360,7 @@ fn env_expand(
360
// However, we cannot use an empty string here, because for
361
// `include!(concat!(env!("OUT_DIR"), "/foo.rs"))` will become
362
// `include!("foo.rs"), which might go to infinite loop
363
- let s = get_env_inner(db, arg_id, &key).unwrap_or_else(|| "__RA_UNIMPLEMENTATED__".to_string());
+ let s = get_env_inner(db, arg_id, &key).unwrap_or_else(|| "__RA_UNIMPLEMENTED__".to_string());
364
let expanded = quote! { #s };
365
366
Ok((expanded, FragmentKind::Expr))
@@ -508,7 +508,7 @@ mod tests {
508
"#,
509
);
510
511
- assert_eq!(expanded, "\"__RA_UNIMPLEMENTATED__\"");
+ assert_eq!(expanded, "\"__RA_UNIMPLEMENTED__\"");
512
}
513
514
#[test]
0 commit comments