mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
284 B
Rust
15 lines
284 B
Rust
//@ known-bug: rust-lang/rust#128094
|
|
//@ compile-flags: -Zmir-opt-level=5 --edition=2018
|
|
|
|
pub enum Request {
|
|
TestSome(T),
|
|
}
|
|
|
|
pub async fn handle_event(event: Request) {
|
|
async move {
|
|
static instance: Request = Request { bar: 17 };
|
|
&instance
|
|
}
|
|
.await;
|
|
}
|