2022-01-21 09:53:50 -06:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(negative_impls)]
|
|
|
|
#![feature(rustc_attrs)]
|
2022-01-30 15:55:22 -06:00
|
|
|
#![feature(with_negative_coherence)]
|
2022-01-21 09:53:50 -06:00
|
|
|
|
|
|
|
pub trait Future {}
|
|
|
|
|
|
|
|
impl<E> !Future for Option<E> where E: Sized {}
|