summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/register-attr-tool-import.stderr
blob: 90b7e169a2fb7907c5c9a7f8eef8aa0cfd30c6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
error: cannot use an explicitly registered attribute through an import
  --> $DIR/register-attr-tool-import.rs:14:3
   |
LL | #[renamed_attr]
   |   ^^^^^^^^^^^^
   |
note: the explicitly registered attribute imported here
  --> $DIR/register-attr-tool-import.rs:11:5
   |
LL | use attr as renamed_attr; // OK
   |     ^^^^^^^^^^^^^^^^^^^^

error: cannot use a tool module through an import
  --> $DIR/register-attr-tool-import.rs:15:3
   |
LL | #[renamed_tool::attr]
   |   ^^^^^^^^^^^^
   |
note: the tool module imported here
  --> $DIR/register-attr-tool-import.rs:12:5
   |
LL | use tool as renamed_tool; // OK
   |     ^^^^^^^^^^^^^^^^^^^^

error: cannot use a tool module through an import
  --> $DIR/register-attr-tool-import.rs:15:3
   |
LL | #[renamed_tool::attr]
   |   ^^^^^^^^^^^^
   |
note: the tool module imported here
  --> $DIR/register-attr-tool-import.rs:12:5
   |
LL | use tool as renamed_tool; // OK
   |     ^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors