Tidying up some of the line spacing / code formatting for NOTE/ERROR annotation to match other files.

This commit is contained in:
William Lee 2016-08-04 08:07:14 -04:00
parent 61318156f8
commit 0e756840f0
6 changed files with 16 additions and 12 deletions

View File

@ -13,7 +13,8 @@ extern "C" {
}
fn main() {
unsafe { printf(); } //~ ERROR E0060
//~| NOTE expected at least 1 parameter
//~| NOTE the following parameter type was expected
unsafe { printf(); }
//~^ ERROR E0060
//~| NOTE expected at least 1 parameter
//~| NOTE the following parameter type was expected
}

View File

@ -11,7 +11,8 @@
fn f(a: u16, b: &str) {}
fn main() {
f(0); //~ ERROR E0061
//~| NOTE expected 2 parameters
//~| NOTE the following parameter types were expected
f(0);
//~^ ERROR E0061
//~| NOTE expected 2 parameters
//~| NOTE the following parameter types were expected
}

View File

@ -23,7 +23,8 @@ fn print_x(_: &Foo<Item=bool>, extra: &str) {
}
fn main() {
print_x(X); //~error this function takes 2 parameters but 1 parameter was supplied
//~^ NOTE the following parameter types were expected: &Foo<Item=bool>, &str
print_x(X);
//~^ ERROR this function takes 2 parameters but 1 parameter was supplied
//~| NOTE the following parameter types were expected: &Foo<Item=bool>, &str
//~| NOTE expected 2 parameters
}

View File

@ -14,7 +14,7 @@ fn main() {
needlesArr.iter().fold(|x, y| {
});
//~^^ ERROR this function takes 2 parameters but 1 parameter was supplied
//~^^^ NOTE the following parameter types were expected
//~| NOTE the following parameter types were expected
//~| NOTE expected 2 parameters
// the first error is, um, non-ideal.
}

View File

@ -11,6 +11,7 @@
// Regression test for issue #4935
fn foo(a: usize) {}
fn main() { foo(5, 6) } //~ ERROR this function takes 1 parameter but 2 parameters were supplied
//~^ NOTE the following parameter type was expected
fn main() { foo(5, 6) }
//~^ ERROR this function takes 1 parameter but 2 parameters were supplied
//~| NOTE the following parameter type was expected
//~| NOTE expected 1 parameter

View File

@ -19,6 +19,6 @@ fn foo(a: isize, b: isize, c: isize, d:isize) {
fn main() {
foo(1, 2, 3);
//~^ ERROR this function takes 4 parameters but 3
//~^^ NOTE the following parameter types were expected
//~| NOTE the following parameter types were expected
//~| NOTE expected 4 parameters
}