summaryrefslogtreecommitdiff
path: root/tests/ui/generator/unresolved-ct-var-drop-tracking.stderr
blob: dec0141ab67178ff49f4785aac9228fae8e0aa13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
error[E0277]: `[(); _]` is not a future
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ----------------------------^^^^^
   |                 |                          ||
   |                 |                          |`[(); _]` is not a future
   |                 |                          help: remove the `.await`
   |                 this call returns `[(); _]`
   |
   = help: the trait `Future` is not implemented for `[(); _]`
   = note: [(); _] must be a future or must implement `IntoFuture` to be awaited
   = note: required for `[(); _]` to implement `IntoFuture`

error[E0698]: type inside `async` block must be known in this context
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:17
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn`
   |
note: the type is part of the `async` block because of this `await`
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                                             ^^^^^

error[E0698]: type inside `async` block must be known in this context
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:17
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn`
   |
note: the type is part of the `async` block because of this `await`
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                                             ^^^^^

error[E0698]: type inside `async` block must be known in this context
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:17
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn`
   |
note: the type is part of the `async` block because of this `await`
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                                             ^^^^^

error[E0698]: type inside `async` block must be known in this context
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:17
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn`
   |
note: the type is part of the `async` block because of this `await`
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                                             ^^^^^

error[E0698]: type inside `async` block must be known in this context
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:17
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                 ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn`
   |
note: the type is part of the `async` block because of this `await`
  --> $DIR/unresolved-ct-var-drop-tracking.rs:7:45
   |
LL |         let s = std::array::from_fn(|_| ()).await;
   |                                             ^^^^^

error: aborting due to 6 previous errors

Some errors have detailed explanations: E0277, E0698.
For more information about an error, try `rustc --explain E0277`.