From 475aa2839f3edd814369f067fc382f576dbb31de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E7=95=A5?= Date: Sun, 9 Apr 2023 00:24:25 +0800 Subject: [PATCH] refactor: correct test sample MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit giving a sorted file is useless Signed-off-by: 蔡略 --- crates/ide-assists/src/handlers/reorder_impl_items.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ide-assists/src/handlers/reorder_impl_items.rs b/crates/ide-assists/src/handlers/reorder_impl_items.rs index 4fd1d2a08164..af96950761ea 100644 --- a/crates/ide-assists/src/handlers/reorder_impl_items.rs +++ b/crates/ide-assists/src/handlers/reorder_impl_items.rs @@ -309,8 +309,8 @@ struct Foo; impl Bar for Foo { type T = ();$0 const C: () = (); - fn a() {} fn z() {} + fn a() {} fn b() {} } "#,