mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
// compile-flags:--test --cfg feature="bar"
|
|
|
|
// https://github.com/rust-lang/rust/issues/30252
|
|
#![crate_name="issue_30252"]
|
|
|
|
/// ```rust
|
|
/// assert_eq!(cfg!(feature = "bar"), true);
|
|
/// ```
|
|
pub fn foo() {}
|