mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
130 B
Rust
7 lines
130 B
Rust
//@ known-bug: #137188
|
|
#![feature(min_generic_const_args)]
|
|
trait Trait {}
|
|
impl Trait for [(); N] {}
|
|
fn N<T>() {}
|
|
pub fn main() {}
|