]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-custom_attribute.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / feature-gates / feature-gate-custom_attribute.stderr
1 error: cannot find attribute `fake_attr` in this scope
2   --> $DIR/feature-gate-custom_attribute.rs:3:3
3    |
4 LL | #[fake_attr]
5    |   ^^^^^^^^^
6
7 error: cannot find attribute `fake_attr` in this scope
8   --> $DIR/feature-gate-custom_attribute.rs:4:3
9    |
10 LL | #[fake_attr(100)]
11    |   ^^^^^^^^^
12
13 error: cannot find attribute `fake_attr` in this scope
14   --> $DIR/feature-gate-custom_attribute.rs:5:3
15    |
16 LL | #[fake_attr(1, 2, 3)]
17    |   ^^^^^^^^^
18
19 error: cannot find attribute `fake_attr` in this scope
20   --> $DIR/feature-gate-custom_attribute.rs:6:3
21    |
22 LL | #[fake_attr("hello")]
23    |   ^^^^^^^^^
24
25 error: cannot find attribute `fake_attr` in this scope
26   --> $DIR/feature-gate-custom_attribute.rs:7:3
27    |
28 LL | #[fake_attr(name = "hello")]
29    |   ^^^^^^^^^
30
31 error: cannot find attribute `fake_attr` in this scope
32   --> $DIR/feature-gate-custom_attribute.rs:8:3
33    |
34 LL | #[fake_attr(1, "hi", key = 12, true, false)]
35    |   ^^^^^^^^^
36
37 error: cannot find attribute `fake_attr` in this scope
38   --> $DIR/feature-gate-custom_attribute.rs:9:3
39    |
40 LL | #[fake_attr(key = "hello", val = 10)]
41    |   ^^^^^^^^^
42
43 error: cannot find attribute `fake_attr` in this scope
44   --> $DIR/feature-gate-custom_attribute.rs:10:3
45    |
46 LL | #[fake_attr(key("hello"), val(10))]
47    |   ^^^^^^^^^
48
49 error: cannot find attribute `fake_attr` in this scope
50   --> $DIR/feature-gate-custom_attribute.rs:11:3
51    |
52 LL | #[fake_attr(enabled = true, disabled = false)]
53    |   ^^^^^^^^^
54
55 error: cannot find attribute `fake_attr` in this scope
56   --> $DIR/feature-gate-custom_attribute.rs:12:3
57    |
58 LL | #[fake_attr(true)]
59    |   ^^^^^^^^^
60
61 error: cannot find attribute `fake_attr` in this scope
62   --> $DIR/feature-gate-custom_attribute.rs:13:3
63    |
64 LL | #[fake_attr(pi = 3.14159)]
65    |   ^^^^^^^^^
66
67 error: cannot find attribute `fake_attr` in this scope
68   --> $DIR/feature-gate-custom_attribute.rs:14:3
69    |
70 LL | #[fake_attr(b"hi")]
71    |   ^^^^^^^^^
72
73 error: cannot find attribute `fake_doc` in this scope
74   --> $DIR/feature-gate-custom_attribute.rs:15:3
75    |
76 LL | #[fake_doc(r"doc")]
77    |   ^^^^^^^^
78
79 error: aborting due to 13 previous errors
80