blob: 61b42e29f10e1232057713533e9b6963eadc7e2d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | //@ dont-require-annotations: NOTE
static foo: i32 = 0;
fn bar(foo: i32) {}
//~^ ERROR function parameters cannot shadow statics
//~| NOTE cannot be named the same as a static
mod submod {
    pub static answer: i32 = 42;
}
use self::submod::answer;
fn question(answer: i32) {}
//~^ ERROR function parameters cannot shadow statics
//~| NOTE cannot be named the same as a static
fn main() {
}
 |