fix(completion): render fn type

This commit is contained in:
Luiz Carvalho 2024-01-02 10:30:16 -03:00
parent ed216e285d
commit 9a36bc393d
No known key found for this signature in database

View file

@ -837,11 +837,11 @@ fn main() {
}
"#,
expect![[r#"
fn main []
fn test []
fn main() []
fn test() []
md dep []
fn function (use dep::test_mod_a::function) [requires_import]
fn function (use dep::test_mod_b::function) [requires_import]
fn function() (use dep::test_mod_b::function) [requires_import]
"#]],
);
}