mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:39:20 +00:00
9 lines
144 B
Rust
9 lines
144 B
Rust
trait Wedding<'t>: 't { }
|
|
|
|
struct Prince<'kiss, 'SnowWhite> {
|
|
child: Box<dyn Wedding<'kiss> + 'SnowWhite>, //~ ERROR E0478
|
|
}
|
|
|
|
fn main() {
|
|
}
|