]> git.lizzy.rs Git - rust.git/blob - src/test/ui/raw-ref-op/feature-raw-ref-op.stderr
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[rust.git] / src / test / ui / raw-ref-op / feature-raw-ref-op.stderr
1 error[E0658]: raw address of syntax is experimental
2   --> $DIR/feature-raw-ref-op.rs:13:5
3    |
4 LL |     &raw const a;
5    |     ^^^^^^^^^^
6    |
7    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
8    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
9
10 error[E0658]: raw address of syntax is experimental
11   --> $DIR/feature-raw-ref-op.rs:14:5
12    |
13 LL |     &raw mut a;
14    |     ^^^^^^^^
15    |
16    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
17    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
18
19 error[E0658]: raw address of syntax is experimental
20   --> $DIR/feature-raw-ref-op.rs:19:13
21    |
22 LL |     let x = &raw const y;
23    |             ^^^^^^^^^^
24    |
25    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
26    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
27
28 error[E0658]: raw address of syntax is experimental
29   --> $DIR/feature-raw-ref-op.rs:20:13
30    |
31 LL |     let x = &raw mut y;
32    |             ^^^^^^^^
33    |
34    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
35    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
36
37 error[E0658]: raw address of syntax is experimental
38   --> $DIR/feature-raw-ref-op.rs:7:10
39    |
40 LL | is_expr!(&raw const a);
41    |          ^^^^^^^^^^
42    |
43    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
44    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
45
46 error[E0658]: raw address of syntax is experimental
47   --> $DIR/feature-raw-ref-op.rs:8:10
48    |
49 LL | is_expr!(&raw mut a);
50    |          ^^^^^^^^
51    |
52    = note: see issue #64490 <https://github.com/rust-lang/rust/issues/64490> for more information
53    = help: add `#![feature(raw_ref_op)]` to the crate attributes to enable
54
55 error: aborting due to 6 previous errors
56
57 For more information about this error, try `rustc --explain E0658`.