mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
9 lines
183 B
Rust
9 lines
183 B
Rust
#![crate_type = "lib"]
|
|
#![feature(negative_impls)]
|
|
#![feature(rustc_attrs)]
|
|
#![feature(with_negative_coherence)]
|
|
|
|
pub trait Future {}
|
|
|
|
impl<E> !Future for Option<E> where E: Sized {}
|