rust/src/test/ui/error-codes/E0010.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

9 lines
315 B
Text

error[E0010]: allocations are not allowed in constants
--> $DIR/E0010.rs:14:24
|
LL | const CON : Box<i32> = box 0; //~ ERROR E0010
| ^^^^^ allocation not allowed in constants
error: aborting due to previous error
For more information about this error, try `rustc --explain E0010`.