mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
9 lines
179 B
Rust
9 lines
179 B
Rust
//@ known-bug: #138166
|
|
#![feature(min_generic_const_args)]
|
|
#![feature(inherent_associated_types)]
|
|
struct a(Box<[u8; Box::b]>);
|
|
impl a {
|
|
fn c(self) { self.0.d() }
|
|
}
|
|
fn main() {}
|