8 lines
169 B
Rust
8 lines
169 B
Rust
|
// compile-flags: --crate-name=feature_name
|
||
|
#![warn(clippy::redundant_feature_names)]
|
||
|
#![warn(clippy::negative_feature_names)]
|
||
|
|
||
|
fn main() {
|
||
|
// test code goes here
|
||
|
}
|