summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-allow-internal-unstable-struct.stderr
blob: df7773ba4fb65a7ccb23b9041244d52412d1c092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0658]: allow_internal_unstable side-steps feature gating and stability checks
  --> $DIR/feature-gate-allow-internal-unstable-struct.rs:4:1
   |
LL | #[allow_internal_unstable()]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: add `#![feature(allow_internal_unstable)]` to the crate attributes to enable

error: attribute should be applied to a macro
  --> $DIR/feature-gate-allow-internal-unstable-struct.rs:4:1
   |
LL | #[allow_internal_unstable()]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL | struct S;
   | --------- not a macro

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0658`.