summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/missing_lifetime_args.stderr
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/generic-associated-types/missing_lifetime_args.stderr
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/generic-associated-types/missing_lifetime_args.stderr')
-rw-r--r--src/test/ui/generic-associated-types/missing_lifetime_args.stderr55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/test/ui/generic-associated-types/missing_lifetime_args.stderr b/src/test/ui/generic-associated-types/missing_lifetime_args.stderr
deleted file mode 100644
index 752587c25..000000000
--- a/src/test/ui/generic-associated-types/missing_lifetime_args.stderr
+++ /dev/null
@@ -1,55 +0,0 @@
-error[E0107]: missing generics for associated type `X::Y`
- --> $DIR/missing_lifetime_args.rs:11:32
- |
-LL | fn foo<'c, 'd>(_arg: Box<dyn X<Y = (&'c u32, &'d u32)>>) {}
- | ^ expected 2 lifetime arguments
- |
-note: associated type defined here, with 2 lifetime parameters: `'a`, `'b`
- --> $DIR/missing_lifetime_args.rs:2:10
- |
-LL | type Y<'a, 'b>;
- | ^ -- --
-help: add missing lifetime arguments
- |
-LL | fn foo<'c, 'd>(_arg: Box<dyn X<Y<'_, '_> = (&'c u32, &'d u32)>>) {}
- | ~~~~~~~~~
-
-error[E0107]: this struct takes 3 lifetime arguments but 2 lifetime arguments were supplied
- --> $DIR/missing_lifetime_args.rs:14:26
- |
-LL | fn bar<'a, 'b, 'c>(_arg: Foo<'a, 'b>) {}
- | ^^^ -- -- supplied 2 lifetime arguments
- | |
- | expected 3 lifetime arguments
- |
-note: struct defined here, with 3 lifetime parameters: `'a`, `'b`, `'c`
- --> $DIR/missing_lifetime_args.rs:5:8
- |
-LL | struct Foo<'a, 'b, 'c> {
- | ^^^ -- -- --
-help: add missing lifetime argument
- |
-LL | fn bar<'a, 'b, 'c>(_arg: Foo<'a, 'b, 'a>) {}
- | ++++
-
-error[E0107]: this struct takes 3 lifetime arguments but 1 lifetime argument was supplied
- --> $DIR/missing_lifetime_args.rs:17:16
- |
-LL | fn f<'a>(_arg: Foo<'a>) {}
- | ^^^ -- supplied 1 lifetime argument
- | |
- | expected 3 lifetime arguments
- |
-note: struct defined here, with 3 lifetime parameters: `'a`, `'b`, `'c`
- --> $DIR/missing_lifetime_args.rs:5:8
- |
-LL | struct Foo<'a, 'b, 'c> {
- | ^^^ -- -- --
-help: add missing lifetime arguments
- |
-LL | fn f<'a>(_arg: Foo<'a, 'a, 'a>) {}
- | ++++++++
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0107`.