Added tests.

This commit is contained in:
Alexander Regueiro 2018-08-15 02:24:05 +01:00
parent cbcabcaac8
commit 7920a65c5f

View file

@ -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() {}