mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
400 B
Rust
19 lines
400 B
Rust
// Test the case where the `Self` type has a bound lifetime that must
|
|
// be adjusted in the fn signature. Issue #19537.
|
|
|
|
use std::collections::HashMap;
|
|
|
|
struct Foo<'a> {
|
|
map: HashMap<usize, &'a str>
|
|
}
|
|
|
|
impl<'a> Foo<'a> {
|
|
fn new() -> Foo<'a> { panic!() }
|
|
fn insert(&'a mut self) { }
|
|
}
|
|
fn main() {
|
|
let mut foo = Foo::new();
|
|
foo.insert();
|
|
foo.insert(); //~ ERROR cannot borrow
|
|
}
|