Add blank lines for readability

This commit is contained in:
Aleksey Kladov 2019-12-18 14:52:58 +01:00
parent c651cf7cd1
commit 69c944a1e2

View File

@ -285,8 +285,10 @@ fn goto_definition_resolves_correct_name() {
mod a;
mod b;
enum E { X(Foo<|>) }
//- /a.rs
struct Foo;
//- /b.rs
struct Foo;
",
@ -300,6 +302,7 @@ fn goto_definition_works_for_module_declaration() {
"
//- /lib.rs
mod <|>foo;
//- /foo.rs
// empty
",
@ -310,6 +313,7 @@ fn goto_definition_works_for_module_declaration() {
"
//- /lib.rs
mod <|>foo;
//- /foo/mod.rs
// empty
",