|
| 1 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 2 | + --> $DIR/feature-gate-custom_attribute.rs:17:1 |
| 3 | + | |
| 4 | +17 | #[fake_attr] //~ ERROR attribute `fake_attr` is currently unknown |
| 5 | + | ^^^^^^^^^^^^ |
| 6 | + | |
| 7 | + = help: add #![feature(custom_attribute)] to the crate attributes to enable |
| 8 | + |
| 9 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 10 | + --> $DIR/feature-gate-custom_attribute.rs:18:1 |
| 11 | + | |
| 12 | +18 | #[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 | + |
| 17 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 18 | + --> $DIR/feature-gate-custom_attribute.rs:19:1 |
| 19 | + | |
| 20 | +19 | #[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 | + |
| 25 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 26 | + --> $DIR/feature-gate-custom_attribute.rs:20:1 |
| 27 | + | |
| 28 | +20 | #[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 | + |
| 33 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 34 | + --> $DIR/feature-gate-custom_attribute.rs:21:1 |
| 35 | + | |
| 36 | +21 | #[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 | + |
| 41 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 42 | + --> $DIR/feature-gate-custom_attribute.rs:22:1 |
| 43 | + | |
| 44 | +22 | #[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 | + |
| 49 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 50 | + --> $DIR/feature-gate-custom_attribute.rs:23:1 |
| 51 | + | |
| 52 | +23 | #[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 | + |
| 57 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 58 | + --> $DIR/feature-gate-custom_attribute.rs:24:1 |
| 59 | + | |
| 60 | +24 | #[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 | + |
| 65 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 66 | + --> $DIR/feature-gate-custom_attribute.rs:25:1 |
| 67 | + | |
| 68 | +25 | #[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 | + |
| 73 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 74 | + --> $DIR/feature-gate-custom_attribute.rs:26:1 |
| 75 | + | |
| 76 | +26 | #[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 | + |
| 81 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 82 | + --> $DIR/feature-gate-custom_attribute.rs:27:1 |
| 83 | + | |
| 84 | +27 | #[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 | + |
| 89 | +error: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 90 | + --> $DIR/feature-gate-custom_attribute.rs:28:1 |
| 91 | + | |
| 92 | +28 | #[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 | + |
| 97 | +error: The attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) |
| 98 | + --> $DIR/feature-gate-custom_attribute.rs:29:1 |
| 99 | + | |
| 100 | +29 | #[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 | + |
| 105 | +error: aborting due to 13 previous errors |
| 106 | + |
0 commit comments