From 8eb7ee909914e4afe74f4926e105e706371e6f1d Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Mon, 20 Dec 2021 15:33:57 +0100 Subject: [PATCH] Update test output --- crates/hir_def/src/item_tree/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/hir_def/src/item_tree/tests.rs b/crates/hir_def/src/item_tree/tests.rs index 1969913bf94..63d177eaabd 100644 --- a/crates/hir_def/src/item_tree/tests.rs +++ b/crates/hir_def/src/item_tree/tests.rs @@ -176,7 +176,7 @@ trait Tr: SuperTrait + 'lifetime { // flags = 0x2 pub(self) fn f( #[attr] // AttrId { is_doc_comment: false, ast_index: 0 } - _: u8, + arg: u8, _: (), ) -> (); @@ -341,7 +341,7 @@ impl<'a, 'b, T, const K: u8> S<'a, 'b, T, K> { // flags = 0x2 pub(self) fn f( - _: impl Copy, + arg: impl Copy, ) -> impl Copy where G: 'a; -- 2.44.0