os-rust/tests/ui/impl-unused-tps.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.6 KiB
Rust
Raw Normal View History

2015-01-05 16:21:45 -05:00
trait Foo<A> {
2024-09-21 07:02:51 +00:00
fn get(&self, A: &A) {}
2015-01-05 16:21:45 -05:00
}
trait Bar {
type Out;
}
2024-09-21 07:02:51 +00:00
impl<T> Foo<T> for [isize; 0] {
2015-01-05 16:21:45 -05:00
// OK, T is used in `Foo<T>`.
}
2024-09-21 07:02:51 +00:00
impl<T, U> Foo<T> for [isize; 1] {
2015-01-05 16:21:45 -05:00
//~^ ERROR the type parameter `U` is not constrained
}
2024-09-21 07:02:51 +00:00
impl<T, U> Foo<T> for [isize; 2]
where
T: Bar<Out = U>,
{
2015-01-05 16:21:45 -05:00
// OK, `U` is now constrained by the output type parameter.
}
2024-09-21 07:02:51 +00:00
impl<T: Bar<Out = U>, U> Foo<T> for [isize; 3] {
2015-01-05 16:21:45 -05:00
// OK, same as above but written differently.
}
2024-09-21 07:02:51 +00:00
impl<T, U> Foo<T> for U {
//~^ ERROR conflicting implementations of trait `Foo<_>` for type `[isize; 0]`
2015-01-05 16:21:45 -05:00
}
2024-09-21 07:02:51 +00:00
impl<T, U> Bar for T {
2015-01-05 16:21:45 -05:00
//~^ ERROR the type parameter `U` is not constrained
type Out = U;
// Using `U` in an associated type within the impl is not good enough!
}
2024-09-21 07:02:51 +00:00
impl<T, U> Bar for T
where
T: Bar<Out = U>,
2015-01-05 16:21:45 -05:00
{
2024-09-21 07:02:51 +00:00
//~^^^^ ERROR the type parameter `U` is not constrained by the impl trait, self type, or predicates
//~| ERROR conflicting implementations of trait `Bar`
2015-01-05 16:21:45 -05:00
// This crafty self-referential attempt is still no good.
}
2024-09-21 07:02:51 +00:00
impl<T, U, V> Foo<T> for T
where
(T, U): Bar<Out = V>,
2015-01-05 16:21:45 -05:00
{
2024-09-21 07:02:51 +00:00
//~^^^^ ERROR the type parameter `U` is not constrained
//~| ERROR the type parameter `V` is not constrained
//~| ERROR conflicting implementations of trait `Foo<[isize; 0]>` for type `[isize; 0]`
2015-01-05 16:21:45 -05:00
// Here, `V` is bound by an output type parameter, but the inputs
// are not themselves constrained.
}
2024-09-21 07:02:51 +00:00
impl<T, U, V> Foo<(T, U)> for T
where
(T, U): Bar<Out = V>,
2015-01-05 16:21:45 -05:00
{
2024-09-21 07:02:51 +00:00
//~^^^^ ERROR conflicting implementations of trait `Foo<([isize; 0], _)>` for type `[isize; 0]`
2015-01-05 16:21:45 -05:00
// As above, but both T and U ARE constrained.
}
2024-09-21 07:02:51 +00:00
fn main() {}