mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03: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];
|
|
}
|