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