about summary refs log tree commit diff
path: root/tests/ui/attributes/builtin-attribute-prefix.stderr
blob: a16080c003fb4cbc9b99ca67d86cd2965f38ea16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `stable`
  --> $DIR/builtin-attribute-prefix.rs:7:12
   |
LL | struct S(#[stable::skip] u8, u16, u32);
   |            ^^^^^^ use of unresolved module or unlinked crate `stable`

error[E0433]: failed to resolve: use of unresolved module or unlinked crate `must_use`
  --> $DIR/builtin-attribute-prefix.rs:2:3
   |
LL | #[must_use::skip]
   |   ^^^^^^^^ use of unresolved module or unlinked crate `must_use`

error: aborting due to 2 previous errors

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