mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
731c0e59a4
Do not ICE when encountering a lifetime error involving an argument with an immutable reference of a method that differs from the trait definition. Fix #123414.
22 lines
328 B
Rust
22 lines
328 B
Rust
trait Hello {
|
|
fn example(&self, input: &i32);
|
|
}
|
|
|
|
struct Test1(i32);
|
|
|
|
impl Hello for Test1 {
|
|
fn example(&self, input: &i32) {
|
|
*input = self.0; //~ ERROR cannot assign
|
|
}
|
|
}
|
|
|
|
struct Test2(i32);
|
|
|
|
impl Hello for Test2 {
|
|
fn example(&self, input: &i32) {
|
|
self.0 += *input; //~ ERROR cannot assign
|
|
}
|
|
}
|
|
|
|
fn main() { }
|