rust-clippy/tests/ui/implied_bounds_in_impls.rs

69 lines
2 KiB
Rust
Raw Normal View History

2023-08-23 13:48:26 +00:00
#![warn(clippy::implied_bounds_in_impls)]
2023-08-19 23:20:29 +00:00
#![allow(dead_code)]
2023-08-23 13:48:26 +00:00
#![feature(return_position_impl_trait_in_trait)]
2023-08-19 23:20:29 +00:00
use std::ops::{Deref, DerefMut};
// Only one bound, nothing to lint.
fn normal_deref<T>(x: T) -> impl Deref<Target = T> {
Box::new(x)
}
2023-08-19 23:20:29 +00:00
// Deref implied by DerefMut
fn deref_derefmut<T>(x: T) -> impl Deref<Target = T> + DerefMut<Target = T> {
Box::new(x)
}
trait GenericTrait<T> {}
trait GenericTrait2<V> {}
2023-08-23 13:48:26 +00:00
// U is intentionally at a different "index" in GenericSubtrait than `T` is in GenericTrait,
// so this can be a good test to make sure that the calculations are right (no off-by-one errors,
// ...)
trait GenericSubtrait<T, U, V>: GenericTrait<U> + GenericTrait2<V> {}
impl GenericTrait<i32> for () {}
impl GenericTrait<i64> for () {}
impl<V> GenericTrait2<V> for () {}
impl<V> GenericSubtrait<(), i32, V> for () {}
impl<V> GenericSubtrait<(), i64, V> for () {}
2023-08-23 13:48:26 +00:00
fn generics_implied<U, W>() -> impl GenericTrait<W> + GenericSubtrait<U, W, U>
where
2023-08-23 13:48:26 +00:00
(): GenericSubtrait<U, W, U>,
{
2023-08-19 23:20:29 +00:00
}
fn generics_implied_multi<V>() -> impl GenericTrait<i32> + GenericTrait2<V> + GenericSubtrait<(), i32, V> {}
2023-08-19 23:20:29 +00:00
fn generics_implied_multi2<T, V>() -> impl GenericTrait<T> + GenericTrait2<V> + GenericSubtrait<(), T, V>
where
(): GenericSubtrait<(), T, V> + GenericTrait<T>,
{
2023-08-19 23:20:29 +00:00
}
// i32 != i64, GenericSubtrait<_, i64, _> does not imply GenericTrait<i32>, don't lint
fn generics_different() -> impl GenericTrait<i32> + GenericSubtrait<(), i64, ()> {}
// i32 == i32, GenericSubtrait<_, i32, _> does imply GenericTrait<i32>, lint
fn generics_same() -> impl GenericTrait<i32> + GenericSubtrait<(), i32, ()> {}
2023-08-19 23:20:29 +00:00
2023-08-23 13:48:26 +00:00
trait SomeTrait {
// Check that it works in trait declarations.
2023-08-23 14:48:12 +00:00
fn f() -> impl Deref + DerefMut<Target = u8>;
2023-08-23 13:48:26 +00:00
}
struct SomeStruct;
impl SomeStruct {
// Check that it works in inherent impl blocks.
2023-08-23 14:48:12 +00:00
fn f() -> impl Deref + DerefMut<Target = u8> {
2023-08-23 13:48:26 +00:00
Box::new(123)
}
}
impl SomeTrait for SomeStruct {
// Check that it works in trait impls.
2023-08-23 14:48:12 +00:00
fn f() -> impl Deref + DerefMut<Target = u8> {
2023-08-23 13:48:26 +00:00
Box::new(42)
}
}
2023-08-19 23:20:29 +00:00
fn main() {}