rust/tests/target/comment-inside-const.rs
2018-03-02 15:07:13 +13:00

9 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;
}