Skip to content

Commit 6e08590

Browse files
committed
internal: tweak test case
1 parent f4153f4 commit 6e08590

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/tools/rust-analyzer/crates/hir-def/src/body/pretty.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ pub(super) fn print_body_hir(db: &dyn DefDatabase, body: &Body, owner: DefWithBo
6969
p.buf.push(' ');
7070
});
7171
// remove the last ", " in param list
72-
p.buf.truncate(p.buf.len() - 2);
72+
if body.params.len() > 0 {
73+
p.buf.truncate(p.buf.len() - 2);
74+
}
7375
p.buf.push(')');
7476
p.buf.push(' ');
7577
// return type

src/tools/rust-analyzer/crates/hir-def/src/body/tests.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ fn main() {
156156
);
157157

158158
expect![[r#"
159-
fn main() {
159+
fn main() -> () {
160160
let are = "are";
161161
let count = 10;
162162
builtin#lang(Arguments::new_v1_formatted)(
@@ -258,7 +258,7 @@ impl SsrError {
258258

259259
assert_eq!(db.body_with_source_map(def).1.diagnostics(), &[]);
260260
expect![[r#"
261-
fn main() {
261+
fn main() -> () {
262262
_ = $crate::error::SsrError::new(
263263
builtin#lang(Arguments::new_v1_formatted)(
264264
&[
@@ -303,7 +303,7 @@ macro_rules! m {
303303
};
304304
}
305305
306-
fn f() {
306+
fn f(a: i32, b: u32) -> String {
307307
m!();
308308
}
309309
"#,
@@ -317,7 +317,7 @@ fn f() {
317317
}
318318

319319
expect![[r#"
320-
fn f() {
320+
fn f(a: i32, b: u32) -> String {
321321
{
322322
$crate::panicking::panic_fmt(
323323
builtin#lang(Arguments::new_v1_formatted)(

0 commit comments

Comments
 (0)