diff options
| author | Alexander Regueiro <alexreg@me.com> | 2018-08-15 02:24:05 +0100 |
|---|---|---|
| committer | Alexander Regueiro <alexreg@me.com> | 2018-08-18 18:56:31 +0100 |
| commit | 7920a65c5ff8bde8a80b0c350de949c39b3a407d (patch) | |
| tree | b0bbf81b1ad894c44ff75db76a27bd8db8b94f7b | |
| parent | cbcabcaac8d06c5c7f68e794b4e3ceb41253b8c1 (diff) | |
| download | rust-7920a65c5ff8bde8a80b0c350de949c39b3a407d.tar.gz rust-7920a65c5ff8bde8a80b0c350de949c39b3a407d.zip | |
Added tests.
| -rw-r--r-- | src/test/run-pass/self-in-typedefs.rs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/run-pass/self-in-typedefs.rs b/src/test/run-pass/self-in-typedefs.rs new file mode 100644 index 00000000000..d262e8c60a1 --- /dev/null +++ b/src/test/run-pass/self-in-typedefs.rs @@ -0,0 +1,40 @@ +// Copyright 2018 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. + +#![feature(self_in_typedefs)] +#![feature(untagged_unions)] + +#![allow(dead_code)] + +enum A<'a, T: 'a> +where + Self: Send, T: PartialEq<Self> +{ + Foo(&'a Self), + Bar(T), +} + +struct B<'a, T: 'a> +where + Self: Send, T: PartialEq<Self> +{ + foo: &'a Self, + bar: T, +} + +union C<'a, T: 'a> +where + Self: Send, T: PartialEq<Self> +{ + foo: &'a Self, + bar: T, +} + +fn main() {} |
