1
Fork 0

update tests

This commit is contained in:
Guillaume Gomez 2018-03-03 15:59:40 +01:00
parent 8c75e18e5d
commit 2e104a77cf
1044 changed files with 1153 additions and 1163 deletions

View file

@ -9,4 +9,4 @@ LL | FOO => {}, //~ ERROR mismatched types
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0308"
For more information about this error, try `rustc --explain E0308`.

View file

@ -24,4 +24,4 @@ LL | *x += 1; //~ ERROR cannot assign to immutable
error: aborting due to 3 previous errors
If you want more information on this error, try using "rustc --explain E0594"
For more information about this error, try `rustc --explain E0594`.

View file

@ -24,4 +24,4 @@ LL | *n += 1; //~ ERROR cannot assign to immutable
error: aborting due to 3 previous errors
If you want more information on this error, try using "rustc --explain E0594"
For more information about this error, try `rustc --explain E0594`.

View file

@ -8,4 +8,4 @@ LL | for (n, mut m) in &tups {
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0009"
For more information about this error, try `rustc --explain E0009`.

View file

@ -6,4 +6,4 @@ LL | Some((x, 3)) | &Some((ref x, 5)) => x,
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0409"
For more information about this error, try `rustc --explain E0409`.

View file

@ -18,4 +18,4 @@ LL | b"abc" => true, //~ ERROR mismatched types
error: aborting due to 2 previous errors
If you want more information on this error, try using "rustc --explain E0308"
For more information about this error, try `rustc --explain E0308`.

View file

@ -6,4 +6,4 @@ LL | u32::XXX => { } //~ ERROR no associated item named
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0599"
For more information about this error, try `rustc --explain E0599`.

View file

@ -6,4 +6,4 @@ LL | match sl { //~ ERROR non-exhaustive patterns
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0004"
For more information about this error, try `rustc --explain E0004`.

View file

@ -8,4 +8,4 @@ LL | if let Some(y) = &Some(22) { //~ ERROR non-reference pattern
error: aborting due to previous error
If you want more information on this error, try using "rustc --explain E0658"
For more information about this error, try `rustc --explain E0658`.