]> git.lizzy.rs Git - rust.git/blob - tests/target/comment-inside-const.rs
Merge pull request #3576 from rchaser53/issue-3567
[rust.git] / tests / target / comment-inside-const.rs
1 fn issue982() {
2     const SOME_CONSTANT: u32 =
3         // Explanation why SOME_CONSTANT needs FLAG_A to be set.
4         FLAG_A |
5         // Explanation why SOME_CONSTANT needs FLAG_B to be set.
6         FLAG_B |
7         // Explanation why SOME_CONSTANT needs FLAG_C to be set.
8         FLAG_C;
9 }