]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-consts/associated-const-in-trait.rs
add tests for 107090
[rust.git] / tests / ui / associated-consts / associated-const-in-trait.rs
1 // #29924
2
3 trait Trait {
4     const N: usize;
5 }
6
7 impl dyn Trait {
8     //~^ ERROR the trait `Trait` cannot be made into an object [E0038]
9     const fn n() -> usize { Self::N }
10 }
11
12 fn main() {}