W3cubDocs

/Rust

Error code E0725

A feature attribute named a feature that was disallowed in the compiler command line flags.

Erroneous code example:

#![feature(never_type)] // error: the feature `never_type` is not in
                        // the list of allowed features

Delete the offending feature attribute, or add it to the list of allowed features in the -Z allow_features flag.

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0725.html