mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
11 lines
97 B
Rust
11 lines
97 B
Rust
//@ known-bug: #135863
|
|
struct A;
|
|
|
|
impl A {
|
|
fn len(self: &&B) {}
|
|
}
|
|
|
|
fn main() {
|
|
A.len()
|
|
}
|