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