rust/tests/ui/error-codes/E0010-teach.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
548 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0010]: allocations are not allowed in constants
2018-12-25 09:56:47 -06:00
--> $DIR/E0010-teach.rs:6:24
2018-02-07 21:35:35 -06:00
|
2019-03-09 06:03:44 -06:00
LL | const CON : Box<i32> = box 0;
2018-02-07 21:35:35 -06:00
| ^^^^^ allocation not allowed in constants
|
= note: The value of statics and constants must be known at compile time, and they live for the entire lifetime of a program. Creating a boxed value allocates memory on the heap at runtime, and therefore cannot be done at compile time.
2020-09-29 19:31:04 -05:00
error: aborting due to previous error
2018-02-07 21:35:35 -06:00
2020-09-29 19:31:04 -05:00
For more information about this error, try `rustc --explain E0010`.