Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/item_tree/tests.rs')
-rw-r--r--crates/hir_def/src/item_tree/tests.rs4
1 files 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 1969913bf9..63d177eaab 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 @@ trait Tr<'a, T: 'a>: Super where Self: for<'a> Tr<'a, T> {}
{
// flags = 0x2
pub(self) fn f<G>(
- _: impl Copy,
+ arg: impl Copy,
) -> impl Copy
where
G: 'a;