rust/tests/crashes/135863.rs

11 lines
97 B
Rust

//@ known-bug: #135863
struct A;
impl A {
fn len(self: &&B) {}
}
fn main() {
A.len()
}