]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0725.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0725.md
CommitLineData
60c5eb7d
XL
1A feature attribute named a feature that was disallowed in the compiler
2command line flags.
3
4Erroneous code example:
5
6```ignore (can't specify compiler flags from doctests)
7#![feature(never_type)] // error: the feature `never_type` is not in
8 // the list of allowed features
9```
10
11Delete the offending feature attribute, or add it to the list of allowed
12features in the `-Z allow_features` flag.