mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
9 lines
179 B
Rust
9 lines
179 B
Rust
// Regression test for the ICE described in #87495.
|
|
|
|
trait T {
|
|
const CONST: (bool, dyn T);
|
|
//~^ ERROR: the trait `T` cannot be made into an object [E0038]
|
|
}
|
|
|
|
fn main() {}
|