about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/issue-105257.rs
blob: a107556fd79ddfc1cf90fe040986b86ec5989c71 (plain)
1
2
3
4
5
6
7
8
9
10
#![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
    //~^ ERROR: mismatched types
    fn foo<const N: usize = { std::mem::size_of::<T>() }>(&self) {} //~ERROR defaults for const parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
}

fn main() {}