mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
9 lines
248 B
Rust
9 lines
248 B
Rust
|
#![feature(generic_const_exprs)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
trait Trait<T> {
|
||
|
fn fnc<const N: usize = "">(&self) {} //~ERROR defaults for const parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
|
||
|
}
|
||
|
|
||
|
fn main() {}
|