mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
13 lines
179 B
Rust
13 lines
179 B
Rust
#![deny(clippy::useless_asref)]
|
|
|
|
trait Trait {
|
|
fn as_ptr(&self);
|
|
}
|
|
|
|
impl<'a> Trait for &'a [u8] {
|
|
fn as_ptr(&self) {
|
|
self.as_ref().as_ptr();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|