summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-10645.stderr
blob: 0055fe061e2aae610e90a904eb2aacc1d148a887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
warning: future cannot be sent between threads safely
  --> $DIR/ice-10645.rs:5:35
   |
LL | pub async fn bar<'a, T: 'a>(_: T) {}
   |                                   ^ future returned by `bar` is not `Send`
   |
note: captured value is not `Send`
  --> $DIR/ice-10645.rs:5:29
   |
LL | pub async fn bar<'a, T: 'a>(_: T) {}
   |                             ^ has type `T` which is not `Send`
   = note: `T` doesn't implement `std::marker::Send`
   = note: `-D clippy::future-not-send` implied by `-D warnings`

warning: 1 warning emitted