mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 16:26:10 +00:00
12 lines
171 B
Rust
12 lines
171 B
Rust
//@ known-bug: #140729
|
|
#![feature(min_generic_const_args)]
|
|
|
|
const C: usize = 0;
|
|
pub struct A<const M: usize> {}
|
|
impl A<C> {
|
|
fn fun1() {}
|
|
}
|
|
impl A {
|
|
fn fun1() {}
|
|
}
|