summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/e0119/issue-28981.rs
blob: 5fb7e9a9913abb0dc17b1ba6f8c77ae4c5df489b (plain)
1
2
3
4
5
6
7
use std::ops::Deref;

struct Foo;

impl<Foo> Deref for Foo { } //~ ERROR must be used

fn main() {}