Fix handling of struct variants in a couple of places

Fixes #17405.
Fixes #17518.
Fixes #17800.
This commit is contained in:
Jakub Wieczorek 2014-09-20 21:25:25 +02:00
parent c586490715
commit b9896cbf6e
7 changed files with 86 additions and 14 deletions

View file

@ -18,7 +18,7 @@ fn main() {
let e = B(REB(()), Tau { t: 3 });
let u = match e {
B(
Tau{t: x}, //~ ERROR mismatched types
Tau{t: x}, //~ ERROR `Tau` does not name a variant
_) => x,
};
}

View file

@ -0,0 +1,19 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
enum Foo {
Bar(int)
}
fn main() {
match Bar(1i) {
Foo { i } => () //~ ERROR `Foo` does not name a variant
}
}

View file

@ -0,0 +1,17 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
enum SomeEnum {
E
}
fn main() {
E { name: "foobar" }; //~ ERROR `E` does not name a structure
}

View file

@ -0,0 +1,21 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
enum MyOption<T> {
MySome(T),
MyNone,
}
fn main() {
match MySome(42i) {
MySome { x: 42i } => (), //~ ERROR `MySome` does not name a struct variant
_ => (),
}
}