mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00
28 lines
366 B
Rust
28 lines
366 B
Rust
//@ revisions: cfail1 cfail2
|
|
|
|
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
pub trait Future {
|
|
type Error;
|
|
fn poll() -> Self::Error;
|
|
}
|
|
|
|
struct S;
|
|
impl Future for S {
|
|
type Error = Error;
|
|
fn poll() -> Self::Error {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
#[cfg(cfail1)]
|
|
pub struct Error(());
|
|
|
|
#[cfg(cfail2)]
|
|
pub struct Error();
|
|
|
|
fn main() {}
|