### What it does
Checks for usage of `.clone()` on a `Copy` type.

### Why is this bad?
The only reason `Copy` types implement `Clone` is for
generics, not for using the `clone` method on a concrete type.

### Example
```
42u64.clone();
```