Files
rust/tests/ui/traits/generic-trait-impl-aliased-array-58212.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
291 B
Rust
Raw Normal View History

2025-08-20 14:02:50 -04:00
// https://github.com/rust-lang/rust/issues/58212
//@ check-pass
trait FromUnchecked {
fn from_unchecked();
}
impl FromUnchecked for [u8; 1] {
fn from_unchecked() {
let mut array: Self = [0; 1];
let _ptr = &mut array as *mut [u8] as *mut u8;
}
}
fn main() {
}