rust/tests/ui/parser/impl-item-const-pass.rs

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

9 lines
72 B
Rust
Raw Normal View History

2019-12-01 04:12:28 +01:00
//@ check-pass
fn main() {}
2025-03-29 17:24:03 +00:00
#[cfg(false)]
2019-12-01 04:12:28 +01:00
impl X {
const Y: u8;
}