]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-enum-not-wf.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / regions-enum-not-wf.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Various examples of structs whose fields are not well-formed.
12
13 #![allow(dead_code)]
14
15 enum Ref1<'a, T> { //~ ERROR the parameter type `T` may not live long enough
16     Ref1Variant1(&'a T)
17 }
18
19 enum Ref2<'a, T> { //~ ERROR the parameter type `T` may not live long enough
20     Ref2Variant1,
21     Ref2Variant2(isize, &'a T),
22 }
23
24 enum RefOk<'a, T:'a> {
25     RefOkVariant1(&'a T)
26 }
27
28 enum RefIndirect<'a, T> { //~ ERROR the parameter type `T` may not live long enough
29     RefIndirectVariant1(isize, RefOk<'a,T>)
30 }
31
32 enum RefDouble<'a, 'b, T> { //~ ERROR reference has a longer lifetime than the data
33     RefDoubleVariant1(&'a &'b T)
34 }
35
36 fn main() { }