mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
13 lines
194 B
Rust
13 lines
194 B
Rust
//@ known-bug: rust-lang/rust#126269
|
|
#![feature(coerce_unsized)]
|
|
|
|
pub enum Foo<T> {
|
|
Bar([T; usize::MAX]),
|
|
}
|
|
|
|
use std::ops::CoerceUnsized;
|
|
|
|
impl<T, U> CoerceUnsized<U> for T {}
|
|
|
|
fn main() {}
|