blob: 52b880e4859b859e854fd824a852ca670f771b03 [file] [log] [blame] [edit]
//@ known-bug: #127033
//@ edition: 2021
pub trait RaftLogStorage {
fn save_vote(vote: ()) -> impl std::future::Future + Send;
}
struct X;
impl RaftLogStorage for X {
fn save_vote(vote: ()) -> impl std::future::Future {
loop {}
async {
vote
}
}
}
fn main() {}