]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gate-custom_attribute.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / feature-gate-custom_attribute.stderr
CommitLineData
2c00a5a8 1error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
2 --> $DIR/feature-gate-custom_attribute.rs:17:1
3 |
417 | #[fake_attr] //~ ERROR attribute `fake_attr` is currently unknown
5 | ^^^^^^^^^^^^
6 |
7 = help: add #![feature(custom_attribute)] to the crate attributes to enable
8
2c00a5a8 9error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
10 --> $DIR/feature-gate-custom_attribute.rs:18:1
11 |
1218 | #[fake_attr(100)] //~ ERROR attribute `fake_attr` is currently unknown
13 | ^^^^^^^^^^^^^^^^^
14 |
15 = help: add #![feature(custom_attribute)] to the crate attributes to enable
16
2c00a5a8 17error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
18 --> $DIR/feature-gate-custom_attribute.rs:19:1
19 |
2019 | #[fake_attr(1, 2, 3)] //~ ERROR attribute `fake_attr` is currently unknown
21 | ^^^^^^^^^^^^^^^^^^^^^
22 |
23 = help: add #![feature(custom_attribute)] to the crate attributes to enable
24
2c00a5a8 25error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
26 --> $DIR/feature-gate-custom_attribute.rs:20:1
27 |
2820 | #[fake_attr("hello")] //~ ERROR attribute `fake_attr` is currently unknown
29 | ^^^^^^^^^^^^^^^^^^^^^
30 |
31 = help: add #![feature(custom_attribute)] to the crate attributes to enable
32
2c00a5a8 33error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
34 --> $DIR/feature-gate-custom_attribute.rs:21:1
35 |
3621 | #[fake_attr(name = "hello")] //~ ERROR attribute `fake_attr` is currently unknown
37 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38 |
39 = help: add #![feature(custom_attribute)] to the crate attributes to enable
40
2c00a5a8 41error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
42 --> $DIR/feature-gate-custom_attribute.rs:22:1
43 |
4422 | #[fake_attr(1, "hi", key = 12, true, false)] //~ ERROR attribute `fake_attr` is currently unknown
45 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
46 |
47 = help: add #![feature(custom_attribute)] to the crate attributes to enable
48
2c00a5a8 49error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
50 --> $DIR/feature-gate-custom_attribute.rs:23:1
51 |
5223 | #[fake_attr(key = "hello", val = 10)] //~ ERROR attribute `fake_attr` is currently unknown
53 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
54 |
55 = help: add #![feature(custom_attribute)] to the crate attributes to enable
56
2c00a5a8 57error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
58 --> $DIR/feature-gate-custom_attribute.rs:24:1
59 |
6024 | #[fake_attr(key("hello"), val(10))] //~ ERROR attribute `fake_attr` is currently unknown
61 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
62 |
63 = help: add #![feature(custom_attribute)] to the crate attributes to enable
64
2c00a5a8 65error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
66 --> $DIR/feature-gate-custom_attribute.rs:25:1
67 |
6825 | #[fake_attr(enabled = true, disabled = false)] //~ ERROR attribute `fake_attr` is currently unknown
69 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
70 |
71 = help: add #![feature(custom_attribute)] to the crate attributes to enable
72
2c00a5a8 73error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
74 --> $DIR/feature-gate-custom_attribute.rs:26:1
75 |
7626 | #[fake_attr(true)] //~ ERROR attribute `fake_attr` is currently unknown
77 | ^^^^^^^^^^^^^^^^^^
78 |
79 = help: add #![feature(custom_attribute)] to the crate attributes to enable
80
2c00a5a8 81error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
82 --> $DIR/feature-gate-custom_attribute.rs:27:1
83 |
8427 | #[fake_attr(pi = 3.14159)] //~ ERROR attribute `fake_attr` is currently unknown
85 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
86 |
87 = help: add #![feature(custom_attribute)] to the crate attributes to enable
88
2c00a5a8 89error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
90 --> $DIR/feature-gate-custom_attribute.rs:28:1
91 |
9228 | #[fake_attr(b"hi")] //~ ERROR attribute `fake_attr` is currently unknown
93 | ^^^^^^^^^^^^^^^^^^^
94 |
95 = help: add #![feature(custom_attribute)] to the crate attributes to enable
96
2c00a5a8 97error[E0658]: The attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
ff7c6d11
XL
98 --> $DIR/feature-gate-custom_attribute.rs:29:1
99 |
10029 | #[fake_doc(r"doc")] //~ ERROR attribute `fake_doc` is currently unknown
101 | ^^^^^^^^^^^^^^^^^^^
102 |
103 = help: add #![feature(custom_attribute)] to the crate attributes to enable
104
105error: aborting due to 13 previous errors
106