Files
rust/tests/ui/consts/raw-ptr-const.stderr
T
2023-11-24 19:15:52 +01:00

11 lines
301 B
Plaintext

error: unsupported untyped pointer in constant
--> $DIR/raw-ptr-const.rs:5:1
|
LL | const CONST_RAW: *const Vec<i32> = &Vec::new() as *const _;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: memory only reachable via raw pointers is not supported
error: aborting due to 1 previous error