blob: e9139c0aa143f7b9808824bcb4d2de76a0b361dc [file] [log] [blame]
static foo: i32 = 0;
fn bar(foo: i32) {}
//~^ ERROR function parameters cannot shadow statics
//~| 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
//~| cannot be named the same as a static
fn main() {
}