1 const
2 mut //~ ERROR: const globals cannot be mutable
3 //~^^ HELP you might want to declare a static instead
4 FOO: usize = 3;
5 
main()6 fn main() {
7 }
8