mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
10 lines
339 B
Rust
10 lines
339 B
Rust
// check-pass
|
|
|
|
// This intends to use the unsizing coercion from array to slice, but it only
|
|
// works if we resolve `<&[u8]>::from` as the reflexive `From<T> for T`. In
|
|
// #113238, we found that gimli had added its own `From<EndianSlice> for &[u8]`
|
|
// that affected all `std/backtrace` users.
|
|
fn main() {
|
|
let _ = <&[u8]>::from(&[]);
|
|
}
|