mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
internal: tweak test case
This commit is contained in:
parent
dcbc76b967
commit
e8941dae46
2 changed files with 7 additions and 5 deletions
|
@ -69,7 +69,9 @@ pub(super) fn print_body_hir(db: &dyn DefDatabase, body: &Body, owner: DefWithBo
|
|||
p.buf.push(' ');
|
||||
});
|
||||
// remove the last ", " in param list
|
||||
if body.params.len() > 0 {
|
||||
p.buf.truncate(p.buf.len() - 2);
|
||||
}
|
||||
p.buf.push(')');
|
||||
p.buf.push(' ');
|
||||
// return type
|
||||
|
|
|
@ -156,7 +156,7 @@ fn main() {
|
|||
);
|
||||
|
||||
expect![[r#"
|
||||
fn main() {
|
||||
fn main() -> () {
|
||||
let are = "are";
|
||||
let count = 10;
|
||||
builtin#lang(Arguments::new_v1_formatted)(
|
||||
|
@ -258,7 +258,7 @@ impl SsrError {
|
|||
|
||||
assert_eq!(db.body_with_source_map(def).1.diagnostics(), &[]);
|
||||
expect![[r#"
|
||||
fn main() {
|
||||
fn main() -> () {
|
||||
_ = $crate::error::SsrError::new(
|
||||
builtin#lang(Arguments::new_v1_formatted)(
|
||||
&[
|
||||
|
@ -303,7 +303,7 @@ macro_rules! m {
|
|||
};
|
||||
}
|
||||
|
||||
fn f() {
|
||||
fn f(a: i32, b: u32) -> String {
|
||||
m!();
|
||||
}
|
||||
"#,
|
||||
|
@ -317,7 +317,7 @@ fn f() {
|
|||
}
|
||||
|
||||
expect![[r#"
|
||||
fn f() {
|
||||
fn f(a: i32, b: u32) -> String {
|
||||
{
|
||||
$crate::panicking::panic_fmt(
|
||||
builtin#lang(Arguments::new_v1_formatted)(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue