mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
36 lines
782 B
Rust
36 lines
782 B
Rust
//@ revisions: ascii unicode
|
|
//@[ascii] compile-flags: --diagnostic-width=40
|
|
//@[unicode] compile-flags: -Zunstable-options --error-format=human-unicode --diagnostic-width=40
|
|
//@ normalize-stderr: "long-type-\d+" -> "long-type-hash"
|
|
trait Future {
|
|
type Error;
|
|
}
|
|
|
|
impl<T, E> Future for Result<T, E> {
|
|
type Error = E;
|
|
}
|
|
|
|
impl<T> Future for Option<T> {
|
|
type Error = ();
|
|
}
|
|
|
|
struct Foo;
|
|
|
|
fn foo() -> Box<dyn Future<Error=Foo>> {
|
|
Box::new( //[ascii]~ ERROR E0271
|
|
Ok::<_, ()>(
|
|
Err::<(), _>(
|
|
Ok::<_, ()>(
|
|
Err::<(), _>(
|
|
Ok::<_, ()>(
|
|
Err::<(), _>(Some(5))
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
}
|
|
fn main() {
|
|
}
|