Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
enum
/
enum-in-scope.rs
blob: df14bc62e76819c32c9b954fc37a17ae83fb90cc [
file
]
#![
allow
(
non_camel_case_types
)]
struct
hello
(
isize
);
fn
main
()
{
let
hello
=
0
;
//~ERROR let bindings cannot shadow tuple structs
}