summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/suggest-move-types.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/suggestions/suggest-move-types.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/suggestions/suggest-move-types.rs')
-rw-r--r--src/test/ui/suggestions/suggest-move-types.rs91
1 files changed, 0 insertions, 91 deletions
diff --git a/src/test/ui/suggestions/suggest-move-types.rs b/src/test/ui/suggestions/suggest-move-types.rs
deleted file mode 100644
index 27930626a..000000000
--- a/src/test/ui/suggestions/suggest-move-types.rs
+++ /dev/null
@@ -1,91 +0,0 @@
-#![allow(warnings)]
-
-// This test verifies that the suggestion to move types before associated type bindings
-// is correct.
-
-trait One<T> {
- type A;
-}
-
-trait OneWithLifetime<'a, T> {
- type A;
-}
-
-trait Three<T, U, V> {
- type A;
- type B;
- type C;
-}
-
-trait ThreeWithLifetime<'a, 'b, 'c, T, U, V> {
- type A;
- type B;
- type C;
-}
-
-struct A<T, M: One<A=(), T>> {
-//~^ ERROR generic arguments must come before the first constraint
- m: M,
- t: T,
-}
-
-
-struct Al<'a, T, M: OneWithLifetime<A=(), T, 'a>> {
-//~^ ERROR generic arguments must come before the first constraint
-//~^^ ERROR type provided when a lifetime was expected
- m: M,
- t: &'a T,
-}
-
-struct B<T, U, V, M: Three<A=(), B=(), C=(), T, U, V>> {
-//~^ ERROR generic arguments must come before the first constraint
- m: M,
- t: T,
- u: U,
- v: V,
-}
-
-struct Bl<'a, 'b, 'c, T, U, V, M: ThreeWithLifetime<A=(), B=(), C=(), T, U, V, 'a, 'b, 'c>> {
-//~^ ERROR generic arguments must come before the first constraint
-//~^^ ERROR type provided when a lifetime was expected
- m: M,
- t: &'a T,
- u: &'b U,
- v: &'c V,
-}
-
-struct C<T, U, V, M: Three<T, A=(), B=(), C=(), U, V>> {
-//~^ ERROR generic arguments must come before the first constraint
- m: M,
- t: T,
- u: U,
- v: V,
-}
-
-struct Cl<'a, 'b, 'c, T, U, V, M: ThreeWithLifetime<T, 'a, A=(), B=(), C=(), U, 'b, V, 'c>> {
-//~^ ERROR generic arguments must come before the first constraint
-//~^^ ERROR lifetime provided when a type was expected
- m: M,
- t: &'a T,
- u: &'b U,
- v: &'c V,
-}
-
-struct D<T, U, V, M: Three<T, A=(), B=(), U, C=(), V>> {
-//~^ ERROR generic arguments must come before the first constraint
- m: M,
- t: T,
- u: U,
- v: V,
-}
-
-struct Dl<'a, 'b, 'c, T, U, V, M: ThreeWithLifetime<T, 'a, A=(), B=(), U, 'b, C=(), V, 'c>> {
-//~^ ERROR generic arguments must come before the first constraint
-//~^^ ERROR lifetime provided when a type was expected
- m: M,
- t: &'a T,
- u: &'b U,
- v: &'c V,
-}
-
-fn main() {}