summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/control-flow/drop-fail.stock.stderr
blob: 72ca4fa08bc4ee8f0e5d097c655865f961a6c1ad (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
error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-fail.rs:8:9
   |
LL |     let x = Some(Vec::new());
   |         ^ constants cannot evaluate destructors
...
LL | };
   | - value is dropped here

error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-fail.rs:21:9
   |
LL |     let vec_tuple = (Vec::new(),);
   |         ^^^^^^^^^ constants cannot evaluate destructors
...
LL | };
   | - value is dropped here

error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-fail.rs:29:9
   |
LL |     let x: Result<_, Vec<i32>> = Ok(Vec::new());
   |         ^ constants cannot evaluate destructors
...
LL | };
   | - value is dropped here

error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-fail.rs:39:9
   |
LL |     let mut tmp = None;
   |         ^^^^^^^ constants cannot evaluate destructors
...
LL | };
   | - value is dropped here

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0493`.