summary refs log tree commit diff
path: root/src/test/ui/parser/issue-17718-const-mut.rs
blob: 4e74516d6b6fbd67320e83a8b874831d02765cbf (plain)
1
2
3
4
5
6
7
const
mut //~ ERROR: const globals cannot be mutable
//~^ HELP did you mean to declare a static?
FOO: usize = 3;

fn main() {
}