main()1 fn main() {
2     let unused = ();
3 
4     #![allow(unused_variables)] //~ ERROR not permitted in this context
5     fn foo() {}
6 }
7