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

9 lines
344 B
Text

error[E0396]: raw pointers cannot be dereferenced in constants
--> $DIR/E0396.rs:13:28
|
LL | const VALUE: u8 = unsafe { *REG_ADDR }; //~ ERROR E0396
| ^^^^^^^^^ dereference of raw pointer in constant
error: aborting due to previous error
For more information about this error, try `rustc --explain E0396`.