mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 21:55:31 +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>
|
|
}
|