mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 07:04:49 +00:00
Fix typo
This commit is contained in:
parent
0d23286caf
commit
3ff5d7e73c
1 changed files with 2 additions and 2 deletions
|
@ -150,13 +150,13 @@ fn macro_rules_from_other_crates_are_visible_with_macro_use() {
|
||||||
structs!(Foo);
|
structs!(Foo);
|
||||||
structs_priv!(Bar);
|
structs_priv!(Bar);
|
||||||
structs_not_exported!(MacroNotResolved1);
|
structs_not_exported!(MacroNotResolved1);
|
||||||
crates::structs!(MacroNotResolved2);
|
crate::structs!(MacroNotResolved2);
|
||||||
|
|
||||||
mod bar;
|
mod bar;
|
||||||
|
|
||||||
//- /bar.rs
|
//- /bar.rs
|
||||||
structs!(Baz);
|
structs!(Baz);
|
||||||
crates::structs!(MacroNotResolved3);
|
crate::structs!(MacroNotResolved3);
|
||||||
|
|
||||||
//- /lib.rs
|
//- /lib.rs
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue