rust/tests/crashes/135863.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
97 B
Rust
Raw Permalink Normal View History

2025-01-25 22:30:38 +01:00
//@ known-bug: #135863
struct A;
impl A {
fn len(self: &&B) {}
}
fn main() {
A.len()
}