Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
QuietMisdreavus committed Jan 28, 2019
1 parent adadefd commit a2b75ed
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/librustc/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ struct Foo1 { x: &bool }
struct Foo2<'a> { x: &'a bool } // correct
impl Foo2 {}
// ^ expected lifetime parameter
// ^^^^ expected lifetime parameter
impl<'a> Foo2<'a> {} // correct
struct Bar1 { x: Foo2 }
Expand Down Expand Up @@ -770,40 +770,40 @@ struct Foo {
These can be fixed by declaring lifetime parameters:
```
fn foo<'a>(x: &'a str) {}
struct Foo<'a> {
x: &'a str,
}
fn foo<'a>(x: &'a str) {}
```
Impl blocks declare lifetime parameters separately. You need to add lifetime
parameters to an impl block if you're implementing a type that has a lifetime
parameter of its own.
For example:
```compile_fail,E0261
struct Foo<'a> {
x: &'a str,
}
// error, use of undeclared lifetime name `'a`
impl Foo<'a> {
fn foo<'a>(x: &'a str) {}
}
struct Foo<'a> {
x: &'a str,
}
```
This is fixed by declaring impl block like this:
This is fixed by declaring the impl block like this:
```
struct Foo<'a> {
x: &'a str,
}
// correct
impl<'a> Foo<'a> {
fn foo(x: &'a str) {}
}
struct Foo<'a> {
x: &'a str,
}
```
"##,

Expand Down

0 comments on commit a2b75ed

Please sign in to comment.