Skip to content

Commit 677afb4

Browse files
committed
Add a regression test for #113238
1 parent 180dffb commit 677afb4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// check-pass
2+
3+
// This intends to use the unsizing coercion from array to slice, but it only
4+
// works if we resolve `<&[u8]>::from` as the reflexive `From<T> for T`. In
5+
// #113238, we found that gimli had added its own `From<EndianSlice> for &[u8]`
6+
// that affected all `std/backtrace` users.
7+
fn main() {
8+
let _ = <&[u8]>::from(&[]);
9+
}

0 commit comments

Comments
 (0)