Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/tests/generated.rs')
-rw-r--r--crates/ide-assists/src/tests/generated.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/crates/ide-assists/src/tests/generated.rs b/crates/ide-assists/src/tests/generated.rs
index b629364b88..eed50a8562 100644
--- a/crates/ide-assists/src/tests/generated.rs
+++ b/crates/ide-assists/src/tests/generated.rs
@@ -1737,41 +1737,6 @@ const test: Foo = Foo {foo: 1, bar: 0}
}
#[test]
-fn doctest_reorder_impl() {
- check_doc_test(
- "reorder_impl",
- r#####"
-trait Foo {
- fn a() {}
- fn b() {}
- fn c() {}
-}
-
-struct Bar;
-$0impl Foo for Bar {
- fn b() {}
- fn c() {}
- fn a() {}
-}
-"#####,
- r#####"
-trait Foo {
- fn a() {}
- fn b() {}
- fn c() {}
-}
-
-struct Bar;
-impl Foo for Bar {
- fn a() {}
- fn b() {}
- fn c() {}
-}
-"#####,
- )
-}
-
-#[test]
fn doctest_reorder_impl_items() {
check_doc_test(
"reorder_impl_items",