mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
6 lines
107 B
Rust
6 lines
107 B
Rust
//@ known-bug: #138088
|
|
#![feature(min_generic_const_args)]
|
|
trait Bar {
|
|
fn x(&self) -> [i32; Bar::x];
|
|
}
|