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