mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 13:56:20 +00:00
13 lines
190 B
Rust
13 lines
190 B
Rust
// #29924
|
|
|
|
trait Trait {
|
|
const N: usize;
|
|
}
|
|
|
|
impl dyn Trait {
|
|
//~^ ERROR the trait `Trait` cannot be made into an object [E0038]
|
|
const fn n() -> usize { Self::N }
|
|
}
|
|
|
|
fn main() {}
|