]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-concat_idents3.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-concat_idents3.stderr
CommitLineData
416331ca
XL
1error[E0658]: use of unstable library feature 'concat_idents': `concat_idents` is not stable enough for use and is subject to change
2 --> $DIR/feature-gate-concat_idents3.rs:5:20
ff7c6d11 3 |
532ac7d7 4LL | assert_eq!(10, concat_idents!(X, Y_1));
416331ca 5 | ^^^^^^^^^^^^^
ff7c6d11 6 |
74b04a01 7 = note: see issue #29599 <https://github.com/rust-lang/rust/issues/29599> for more information
416331ca 8 = help: add `#![feature(concat_idents)]` to the crate attributes to enable
ff7c6d11 9
416331ca
XL
10error[E0658]: use of unstable library feature 'concat_idents': `concat_idents` is not stable enough for use and is subject to change
11 --> $DIR/feature-gate-concat_idents3.rs:6:20
ff7c6d11 12 |
532ac7d7 13LL | assert_eq!(20, concat_idents!(X, Y_2));
416331ca 14 | ^^^^^^^^^^^^^
ff7c6d11 15 |
74b04a01 16 = note: see issue #29599 <https://github.com/rust-lang/rust/issues/29599> for more information
416331ca 17 = help: add `#![feature(concat_idents)]` to the crate attributes to enable
ff7c6d11
XL
18
19error: aborting due to 2 previous errors
20
0531ce1d 21For more information about this error, try `rustc --explain E0658`.