summary refs log tree commit diff
path: root/src/test/ui/consts/control-flow/drop-failure.stderr
blob: 3eec3a929a07ff6ccc685436ee2b3e56d5aaef86 (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
error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-failure.rs:7:9
   |
LL |     let x = Some(Vec::new());
   |         ^ constants cannot evaluate destructors

error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-failure.rs:20:9
   |
LL |     let vec_tuple = (Vec::new(),);
   |         ^^^^^^^^^ constants cannot evaluate destructors

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

error[E0493]: destructors cannot be evaluated at compile-time
  --> $DIR/drop-failure.rs:38:9
   |
LL |     let mut tmp = None;
   |         ^^^^^^^ constants cannot evaluate destructors

error: aborting due to 4 previous errors

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