mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
28 lines
422 B
Rust
28 lines
422 B
Rust
//@ build-pass
|
|
// issue: #115807
|
|
|
|
trait Chip: for<'a> TraitWithLifetime<'a> + SomeMarker {
|
|
fn compute(&self);
|
|
}
|
|
|
|
trait SomeMarker {}
|
|
|
|
trait TraitWithLifetime<'a>: SomeMarker {}
|
|
|
|
trait Machine {
|
|
fn run();
|
|
}
|
|
|
|
struct BasicMachine;
|
|
|
|
impl Machine for BasicMachine {
|
|
fn run() {
|
|
let chips: [&dyn Chip; 0] = [];
|
|
let _ = chips.map(|chip| chip.compute());
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
BasicMachine::run();
|
|
}
|