Jump to sourceChanges in other files

This commit is contained in:
Timo Freiberg 2020-04-20 18:02:36 +02:00
parent ba8faf3efc
commit 74780a15f6
3 changed files with 15 additions and 16 deletions

View file

@ -907,23 +907,14 @@ mod foo;
fn main() {
foo::bar<|>()
}
//- /foo.rs
",
r"
//- /main.rs
mod foo;
fn main() {
foo::bar()
}
//- /foo.rs
fn bar() {
pub(crate) fn bar() {
<|>todo!()
}
",
}",
)
}