We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 180dffb commit 677afb4Copy full SHA for 677afb4
tests/ui/std/slice-from-array-issue-113238.rs
@@ -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