2018-12-16 22:21:47 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2015-01-08 21:54:35 +11:00
|
|
|
struct hello(isize);
|
2012-04-11 21:28:25 -07:00
|
|
|
|
|
|
|
fn main() {
|
2016-09-15 00:51:46 +03:00
|
|
|
let hello = 0; //~ERROR let bindings cannot shadow tuple structs
|
2012-11-02 10:43:15 -07:00
|
|
|
}
|