mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
115 B
Rust
7 lines
115 B
Rust
//@ known-bug: #137084
|
|
#![feature(min_generic_const_args)]
|
|
fn a<const b: i32>() {}
|
|
fn d(e: &String) {
|
|
a::<d>
|
|
}
|