In Rust the "_" character says delete this value (for unused variables) which saves memory but I can still print the value of the variable which has an underscore without compiler errors.
I was wondering if the compiler would give me an error if i tried to reference a value of an underscored variable and expected the compiler to give me and error stating the situation.
fn main() {
let _val :u16 = 65535;
println!("finished {}",_val);
}