rust/tests/ui/lint/unused_braces_macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
92 B
Rust
Raw Normal View History

2022-12-09 23:21:12 +00:00
//@ build-pass
pub fn foo<const BAR: bool> () {}
fn main() {
foo::<{cfg!(FALSE)}>();
2022-12-09 23:21:12 +00:00
}