Update tests with the new error messages
This commit is contained in:
parent
4380e96c04
commit
1484f9cd46
15 changed files with 56 additions and 29 deletions
|
@ -30,12 +30,12 @@ fn main() {
|
||||||
let &&x = &&(&1i as &T);
|
let &&x = &&(&1i as &T);
|
||||||
|
|
||||||
// n == m
|
// n == m
|
||||||
let &x = &1i as &T; //~ ERROR cannot be dereferenced
|
let &x = &1i as &T; //~ ERROR type `&T` cannot be dereferenced
|
||||||
let &&x = &(&1i as &T); //~ ERROR cannot be dereferenced
|
let &&x = &(&1i as &T); //~ ERROR type `&T` cannot be dereferenced
|
||||||
let box x = box 1i as Box<T>; //~ ERROR cannot be dereferenced
|
let box x = box 1i as Box<T>; //~ ERROR type `Box<T>` cannot be dereferenced
|
||||||
|
|
||||||
// n > m
|
// n > m
|
||||||
let &&x = &1i as &T; //~ ERROR found an `&`-pointer pattern
|
let &&x = &1i as &T; //~ ERROR found &-ptr
|
||||||
let &&&x = &(&1i as &T); //~ ERROR found an `&`-pointer pattern
|
let &&&x = &(&1i as &T); //~ ERROR found &-ptr
|
||||||
let box box x = box 1i as Box<T>; //~ ERROR found a box pattern
|
let box box x = box 1i as Box<T>; //~ ERROR found box
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,8 @@ fn main() {
|
||||||
let x = [1,2];
|
let x = [1,2];
|
||||||
let y = match x {
|
let y = match x {
|
||||||
[] => None,
|
[] => None,
|
||||||
//~^ ERROR expected `[<generic integer #0>, ..2]`, found a fixed array pattern of size 0
|
//~^ ERROR mismatched types: expected `[<generic integer #0>, ..2]`, found `[<generic #7>, ..0]`
|
||||||
|
// (expected array, found array)
|
||||||
[a,_] => Some(a)
|
[a,_] => Some(a)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,8 @@ mod b {
|
||||||
let enum_struct_variant = ::a::get_enum_struct_variant();
|
let enum_struct_variant = ::a::get_enum_struct_variant();
|
||||||
match enum_struct_variant {
|
match enum_struct_variant {
|
||||||
a::EnumStructVariant { x, y, z } => {
|
a::EnumStructVariant { x, y, z } => {
|
||||||
//~^ ERROR error: mismatched types: expected `()`, found a structure pattern
|
//~^ ERROR mismatched types: expected `()`, found `a::Enum`
|
||||||
|
// (expected (), found enum a::Enum)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,8 +13,8 @@ struct vec3 { y: f32, z: f32 }
|
||||||
|
|
||||||
fn make(v: vec2) {
|
fn make(v: vec2) {
|
||||||
let vec3 { y: _, z: _ } = v;
|
let vec3 { y: _, z: _ } = v;
|
||||||
//~^ ERROR `vec3` does not name the structure `vec2`
|
//~^ ERROR mismatched types: expected `vec2`, found `vec3`
|
||||||
//~^^ ERROR struct `vec2` does not have a field named `z`
|
// (expected struct vec2, found struct vec3)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() { }
|
fn main() { }
|
||||||
|
|
|
@ -9,11 +9,23 @@
|
||||||
// except according to those terms.
|
// except according to those terms.
|
||||||
|
|
||||||
struct Foo {
|
struct Foo {
|
||||||
a: uint,
|
a: uint,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main(){
|
fn main() {
|
||||||
let Foo {a: _, a: _} = Foo {a: 29};
|
let Foo {
|
||||||
//~^ ERROR field `a` bound twice in pattern
|
a: _, //~ NOTE field `a` previously bound here
|
||||||
}
|
a: _ //~ ERROR field `a` bound multiple times in the pattern
|
||||||
|
} = Foo { a: 29 };
|
||||||
|
|
||||||
|
let Foo {
|
||||||
|
a, //~ NOTE field `a` previously bound here
|
||||||
|
a: _ //~ ERROR field `a` bound multiple times in the pattern
|
||||||
|
} = Foo { a: 29 };
|
||||||
|
|
||||||
|
let Foo {
|
||||||
|
a, //~ NOTE field `a` previously bound here
|
||||||
|
a: _, //~ ERROR field `a` bound multiple times in the pattern
|
||||||
|
a: x //~ ERROR field `a` bound multiple times in the pattern
|
||||||
|
} = Foo { a: 29 };
|
||||||
|
}
|
||||||
|
|
|
@ -18,7 +18,9 @@ fn main() {
|
||||||
let e = B(REB(()), Tau { t: 3 });
|
let e = B(REB(()), Tau { t: 3 });
|
||||||
let u = match e {
|
let u = match e {
|
||||||
B(
|
B(
|
||||||
Tau{t: x}, //~ ERROR `Tau` does not name a variant
|
Tau{t: x},
|
||||||
|
//~^ ERROR mismatched types: expected `main::R`, found `main::Tau`
|
||||||
|
// (expected enum main::R, found struct main::Tau)
|
||||||
_) => x,
|
_) => x,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ use std::raw::Slice;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let Slice { data: data, len: len } = "foo";
|
let Slice { data: data, len: len } = "foo";
|
||||||
//~^ ERROR mismatched types: expected `&str`, found a structure pattern
|
//~^ ERROR mismatched types: expected `&str`, found `core::raw::Slice<<generic #3>>`
|
||||||
|
// (expected &-ptr, found struct core::raw::Slice)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ use std::raw::Slice;
|
||||||
fn main() {
|
fn main() {
|
||||||
match () {
|
match () {
|
||||||
Slice { data: data, len: len } => (),
|
Slice { data: data, len: len } => (),
|
||||||
//~^ ERROR mismatched types: expected `()`, found a structure pattern
|
//~^ ERROR mismatched types: expected `()`, found `core::raw::Slice<<generic #3>>`
|
||||||
|
// (expected (), found struct core::raw::Slice)
|
||||||
_ => unreachable!()
|
_ => unreachable!()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,6 @@ enum Foo {
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match Bar(1i) {
|
match Bar(1i) {
|
||||||
Foo { i } => () //~ ERROR `Foo` does not name a variant
|
Foo { i } => () //~ ERROR `Foo` does not name a struct or a struct variant
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ enum MyOption<T> {
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match MySome(42i) {
|
match MySome(42i) {
|
||||||
MySome { x: 42i } => (), //~ ERROR `MySome` does not name a struct variant
|
MySome { x: 42i } => (), //~ ERROR `MySome` does not name a struct or a struct variant
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,24 +12,29 @@ enum A { B, C }
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match (true, false) {
|
match (true, false) {
|
||||||
B => (), //~ ERROR expected `(bool,bool)`, found an enum or structure pattern
|
B => (),
|
||||||
|
//~^ ERROR mismatched types: expected `(bool,bool)`, found `A`
|
||||||
|
// (expected tuple, found enum A)
|
||||||
_ => ()
|
_ => ()
|
||||||
}
|
}
|
||||||
|
|
||||||
match (true, false) {
|
match (true, false) {
|
||||||
(true, false, false) => ()
|
(true, false, false) => ()
|
||||||
//~^ ERROR mismatched types: expected `(bool,bool)`, found tuple
|
//~^ ERROR mismatched types: expected `(bool,bool)`,
|
||||||
|
// found `(<generic #7>,<generic #8>,<generic #9>)`
|
||||||
// (expected a tuple with 2 elements, found one with 3 elements)
|
// (expected a tuple with 2 elements, found one with 3 elements)
|
||||||
}
|
}
|
||||||
|
|
||||||
match (true, false) {
|
match (true, false) {
|
||||||
box (true, false) => ()
|
box (true, false) => ()
|
||||||
//~^ ERROR mismatched types: expected `(bool,bool)`, found a box pattern
|
//~^ ERROR mismatched types: expected `(bool,bool)`, found `Box<<generic #11>>`
|
||||||
|
// (expected tuple, found box)
|
||||||
}
|
}
|
||||||
|
|
||||||
match (true, false) {
|
match (true, false) {
|
||||||
&(true, false) => ()
|
&(true, false) => ()
|
||||||
//~^ ERROR mismatched types: expected `(bool,bool)`, found an `&`-pointer pattern
|
//~^ ERROR mismatched types: expected `(bool,bool)`, found `&<generic #15>`
|
||||||
|
// (expected tuple, found &-ptr)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,9 @@ enum Whatever {
|
||||||
|
|
||||||
fn foo(x: Whatever) {
|
fn foo(x: Whatever) {
|
||||||
match x {
|
match x {
|
||||||
Some(field) => field.access(),
|
Some(field) =>
|
||||||
//~^ ERROR: mismatched types: expected `Whatever`, found
|
//~^ ERROR: mismatched types: expected `Whatever`, found `core::option::Option<<generic #3>>`
|
||||||
|
field.access(), //~ ERROR the type of this value must be known in this context
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
match () {
|
match () {
|
||||||
[()] => { } //~ ERROR mismatched types: expected `()`, found an array pattern
|
[()] => { }
|
||||||
|
//~^ ERROR mismatched types: expected `()`, found `&[<generic #1>]` (expected (), found &-ptr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,8 @@ fn main() {
|
||||||
_ => ()
|
_ => ()
|
||||||
}
|
}
|
||||||
match 'c' {
|
match 'c' {
|
||||||
S { .. } => (), //~ ERROR mismatched types: expected `char`, found a structure pattern
|
S { .. } => (),
|
||||||
|
//~^ ERROR mismatched types: expected `char`, found `S` (expected char, found struct S)
|
||||||
|
|
||||||
_ => ()
|
_ => ()
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
// except according to those terms.
|
// except according to those terms.
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let (x, y) = (); //~ ERROR expected `()`, found tuple (types differ)
|
let (x, y) = ();
|
||||||
|
//~^ ERROR types: expected `()`, found `(<generic #3>,<generic #4>)` (expected (), found tuple)
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue