2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:17:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:18:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(100)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:19:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(1, 2, 3)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:20:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr("hello")] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:21:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(name = "hello")] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:22:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(1, "hi", key = 12, true, false)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:23:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(key = "hello", val = 10)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:24:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(key("hello"), val(10))] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:25:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(enabled = true, disabled = false)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:26:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(true)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:27:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(pi = 3.14159)] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:28:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_attr(b"hi")] //~ ERROR attribute `fake_attr` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: The attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2017-12-06 03:18:03 -06:00
|
|
|
--> $DIR/feature-gate-custom_attribute.rs:29:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[fake_doc(r"doc")] //~ ERROR attribute `fake_doc` is currently unknown
|
2017-12-06 03:18:03 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|