### What it does
Checks for usage of `&vec![..]` when using `&[..]` would
be possible.

### Why is this bad?
This is less efficient.

### Example
```
fn foo(_x: &[u8]) {}

foo(&vec![1, 2]);
```

Use instead:
```
foo(&[1, 2]);
```