]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/must_use-in-stdlib-traits.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / compile-fail / must_use-in-stdlib-traits.rs
CommitLineData
0731742a
XL
1#![deny(unused_must_use)]
2#![feature(arbitrary_self_types, futures_api)]
3
4use std::iter::Iterator;
5use std::future::Future;
6
7use std::task::{Poll, LocalWaker};
8use std::pin::Pin;
9use std::unimplemented;
10
11struct MyFuture;
12
13impl Future for MyFuture {
14 type Output = u32;
15
16 fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<u32> {
17 Poll::Pending
18 }
19}
20
21fn iterator() -> impl Iterator {
22 std::iter::empty::<u32>()
23}
24
25fn future() -> impl Future {
26 MyFuture
27}
28
29fn square_fn_once() -> impl FnOnce(u32) -> u32 {
30 |x| x * x
31}
32
33fn square_fn_mut() -> impl FnMut(u32) -> u32 {
34 |x| x * x
35}
36
37fn square_fn() -> impl Fn(u32) -> u32 {
38 |x| x * x
39}
40
41fn main() {
42 iterator(); //~ ERROR unused implementer of `std::iter::Iterator` that must be used
43 future(); //~ ERROR unused implementer of `std::future::Future` that must be used
44 square_fn_once(); //~ ERROR unused implementer of `std::ops::FnOnce` that must be used
45 square_fn_mut(); //~ ERROR unused implementer of `std::ops::FnMut` that must be used
46 square_fn(); //~ ERROR unused implementer of `std::ops::Fn` that must be used
47}