Add generator, async tests with uninhabited saved local

This commit is contained in:
Tyler Mandry 2019-08-07 16:39:54 -07:00
parent 5bbf6733ea
commit f544721de4
2 changed files with 49 additions and 0 deletions

View File

@ -14,6 +14,32 @@ pub async fn foo(x: &u32, y: u32) -> u32 {
*x + y + *a
}
async fn add(x: u32, y: u32) -> u32 {
async { x + y }.await
}
async fn build_aggregate(a: u32, b: u32, c: u32, d: u32) -> u32 {
let x = (add(a, b).await, add(c, d).await);
x.0 + x.1
}
enum Never {}
fn never() -> Never {
panic!()
}
async fn includes_never(crash: bool, x: u32) -> u32 {
let mut result = async { x * x }.await;
if !crash {
return result;
}
#[allow(unused)]
let bad = never();
result *= async { x + x }.await;
drop(bad);
result
}
fn raw_waker_clone(_this: *const ()) -> RawWaker {
panic!("unimplemented");
}
@ -38,4 +64,14 @@ fn main() {
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(31));
let mut fut = build_aggregate(1, 2, 3, 4);
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(10));
let mut fut = includes_never(false, 4);
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(16));
}

View File

@ -17,7 +17,11 @@ fn finish<T>(mut amt: usize, mut t: T) -> T::Return
}
}
}
}
enum Never {}
fn never() -> Never {
panic!()
}
fn main() {
@ -67,4 +71,13 @@ fn main() {
}),
10
);
let b = true;
finish(1, || {
yield 1;
if b { return; }
#[allow(unused)]
let x = never();
yield 2;
drop(x);
});
}