mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
error: untyped pointers are not allowed in constant
|
|
--> $DIR/raw-ptr-const.rs:5:1
|
|
|
|
|
LL | const CONST_RAW: *const Vec<i32> = &Vec::new() as *const _;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|