diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-05 09:13:28 +0100 |
|---|---|---|
| committer | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-11 09:32:08 +0000 |
| commit | cf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch) | |
| tree | 40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/ui/polymorphization/predicates.rs | |
| parent | ca855e6e42787ecd062d81d53336fe6788ef51a9 (diff) | |
| download | rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip | |
Move /src/test to /tests
Diffstat (limited to 'src/test/ui/polymorphization/predicates.rs')
| -rw-r--r-- | src/test/ui/polymorphization/predicates.rs | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/src/test/ui/polymorphization/predicates.rs b/src/test/ui/polymorphization/predicates.rs deleted file mode 100644 index 6a5fc2e33de..00000000000 --- a/src/test/ui/polymorphization/predicates.rs +++ /dev/null @@ -1,95 +0,0 @@ -// build-fail -// compile-flags: -Copt-level=0 -Zpolymorphize=on - -#![feature(rustc_attrs)] - -// This test checks that `T` is considered used in `foo`, because it is used in a predicate for -// `I`, which is used. - -#[rustc_polymorphize_error] -fn bar<I>() { - //~^ ERROR item has unused generic parameters -} - -#[rustc_polymorphize_error] -fn foo<I, T>(_: I) -//~^ ERROR item has unused generic parameters -where - I: Iterator<Item = T>, -{ - bar::<I>() -} - -#[rustc_polymorphize_error] -fn baz<I, T>(_: I) -//~^ ERROR item has unused generic parameters -where - std::iter::Repeat<I>: Iterator<Item = T>, -{ - bar::<I>() -} - -// In addition, check that `I` is considered used in `next::{{closure}}`, because `T` is used and -// `T` is really just `I::Item`. `E` is used due to the fixed-point marking of predicates. - -pub(crate) struct Foo<'a, I, E>(I, &'a E); - -impl<'a, I, T: 'a, E> Iterator for Foo<'a, I, E> -where - I: Iterator<Item = &'a (T, E)>, -{ - type Item = T; - - #[rustc_polymorphize_error] - fn next(&mut self) -> Option<Self::Item> { - self.find(|_| true) - //~^ ERROR item has unused generic parameters - } -} - -// Furthermore, check that `B` is considered used because `C` is used, and that `A` is considered -// used because `B` is now used. - -trait Baz<Z> {} - -impl Baz<u16> for u8 {} -impl Baz<u32> for u16 {} - -#[rustc_polymorphize_error] -fn quux<A, B, C: Default>() -> usize -//~^ ERROR item has unused generic parameters -where - A: Baz<B>, - B: Baz<C>, -{ - std::mem::size_of::<C>() -} - -// Finally, check that `F` is considered used because `G` is used when neither are in the self-ty -// of the predicate. - -trait Foobar<F, G> {} - -impl Foobar<u32, u32> for () {} - -#[rustc_polymorphize_error] -fn foobar<F, G>() -> usize -//~^ ERROR item has unused generic parameters -where - (): Foobar<F, G>, -{ - std::mem::size_of::<G>() -} - -fn main() { - let x = &[2u32]; - foo(x.iter()); - baz(x.iter()); - - let mut a = Foo([(1u32, 1u16)].iter(), &1u16); - let _ = a.next(); - - let _ = quux::<u8, u16, u32>(); - - let _ = foobar::<u32, u32>(); -} |
