]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0554.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0554.md
CommitLineData
60c5eb7d
XL
1Feature attributes are only allowed on the nightly release channel. Stable or
2beta compilers will not comply.
3
f9f354fc 4Erroneous code example:
60c5eb7d
XL
5
6```ignore (depends on release channel)
7#![feature(non_ascii_idents)] // error: `#![feature]` may not be used on the
8 // stable release channel
9```
10
11If you need the feature, make sure to use a nightly release of the compiler
12(but be warned that the feature may be removed or altered in the future).