Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
error-codes
/
e0119
/
issue-28981.rs
blob: 5fb7e9a9913abb0dc17b1ba6f8c77ae4c5df489b [
file
] [
log
] [
blame
]
use
std
::
ops
::
Deref
;
struct
Foo
;
impl
<
Foo
>
Deref
for
Foo
{
}
//~ ERROR must be used
fn
main
()
{}