summary refs log tree commit diff
path: root/src/test/ui/raw-ref-op/raw-ref-op.stderr
blob: 04c59c95fca1eba606186ec23aa508809da44e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: raw borrows are not yet implemented
  --> $DIR/raw-ref-op.rs:7:15
   |
LL |     let c_p = &raw const x;
   |               ^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/64490

error: raw borrows are not yet implemented
  --> $DIR/raw-ref-op.rs:8:15
   |
LL |     let m_p = &raw mut x;
   |               ^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/64490

error: aborting due to 2 previous errors