summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr')
-rw-r--r--src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr b/src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr
deleted file mode 100644
index e2f9930cc..000000000
--- a/src/test/ui/generic-associated-types/issue-68644-codegen-selection.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-error[E0277]: expected a `Fn<()>` closure, found `T`
- --> $DIR/issue-68644-codegen-selection.rs:12:18
- |
-LL | type F<'a> = Self;
- | ^^^^ expected an `Fn<()>` closure, found `T`
- |
- = note: wrap the `T` in a closure with no arguments: `|| { /* code */ }`
-note: required by a bound in `Fun::F`
- --> $DIR/issue-68644-codegen-selection.rs:4:17
- |
-LL | type F<'a>: Fn() -> u32;
- | ^^^^^^^^^^^ required by this bound in `Fun::F`
-help: consider restricting type parameter `T`
- |
-LL | impl<T: std::ops::Fn<()>> Fun for T {
- | ++++++++++++++++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.