mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +00:00
11 lines
209 B
Rust
11 lines
209 B
Rust
#![feature(dyn_star)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::fmt::Debug;
|
|
|
|
fn main() {
|
|
let i = [1, 2, 3, 4] as dyn* Debug;
|
|
//~^ ERROR `[i32; 4]` needs to have the same ABI as a pointer
|
|
dbg!(i);
|
|
}
|