Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
sized
/
unsized-binding.rs
blob: ce6c15273764bd7088618014915bc947b4a898ad [
file
]
fn
main
()
{
let
x
=
*
""
;
//~ ERROR E0277
drop
(
x
);
drop
(
x
);
}