]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0106.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / error-codes / E0106.rs
1 // Copyright 2016 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 struct Foo {
12     x: &bool,
13     //~^ ERROR E0106
14 }
15 enum Bar {
16     A(u8),
17     B(&bool),
18    //~^ ERROR E0106
19 }
20 type MyStr = &str;
21         //~^ ERROR E0106
22
23 struct Baz<'a>(&'a str);
24 struct Buzz<'a, 'b>(&'a str, &'b str);
25
26 struct Quux {
27     baz: Baz,
28     //~^ ERROR E0106
29     //~| expected lifetime parameter
30     buzz: Buzz,
31     //~^ ERROR E0106
32     //~| expected 2 lifetime parameters
33 }
34
35 fn main() {
36 }