]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/E0493.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / span / E0493.stderr
1 error[E0493]: destructor of `(Foo, Foo)` cannot be evaluated at compile-time
2   --> $DIR/E0493.rs:17:17
3    |
4 LL | const F : Foo = (Foo { a : 0 }, Foo { a : 1 }).1;
5    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - value is dropped here
6    |                 |
7    |                 the destructor for this type cannot be evaluated in constants
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0493`.