blob: 067de1cd867d9d55ec87a5425db63355d1d0924d (
plain)
1
2
3
4
5
6
7
8
|
#![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 {}
|