2013-05-02 17:38:19 -05:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2013-12-25 23:55:05 -06:00
|
|
|
enum Either<T, U> { Left(T), Right(U) }
|
2015-01-08 05:02:42 -06:00
|
|
|
struct S(Either<usize, usize>);
|
2013-05-02 17:38:19 -05:00
|
|
|
|
|
|
|
fn main() {
|
2014-11-06 02:05:53 -06:00
|
|
|
match S(Either::Left(5)) {
|
2015-01-12 00:01:44 -06:00
|
|
|
Either::Right(_) => {}
|
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `S`
|
|
|
|
//~| found type `Either<_, _>`
|
|
|
|
//~| expected struct `S`, found enum `Either`
|
2013-05-02 17:38:19 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|