mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
12 lines
150 B
Rust
12 lines
150 B
Rust
//@ known-bug: #136379
|
|
#![feature(min_generic_const_args)]
|
|
pub struct S();
|
|
|
|
impl S {
|
|
pub fn f() -> [u8; S] {
|
|
[]
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|