mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-21 20:23:21 +00:00
10 lines
294 B
Rust
10 lines
294 B
Rust
fn issue982() {
|
|
const SOME_CONSTANT: u32 =
|
|
// Explanation why SOME_CONSTANT needs FLAG_A to be set.
|
|
FLAG_A |
|
|
// Explanation why SOME_CONSTANT needs FLAG_B to be set.
|
|
FLAG_B |
|
|
// Explanation why SOME_CONSTANT needs FLAG_C to be set.
|
|
FLAG_C;
|
|
}
|