mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
10 lines
126 B
Rust
10 lines
126 B
Rust
//@ known-bug: #134217
|
|
|
|
impl<A> std::ops::CoerceUnsized<A> for A {}
|
|
|
|
fn main() {
|
|
if let _ = true
|
|
&& true
|
|
{}
|
|
}
|