summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/issue-68644-codegen-selection.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/issue-68644-codegen-selection.rs')
-rw-r--r--tests/ui/generic-associated-types/issue-68644-codegen-selection.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/generic-associated-types/issue-68644-codegen-selection.rs b/tests/ui/generic-associated-types/issue-68644-codegen-selection.rs
index 898cfa1e7..e379bce07 100644
--- a/tests/ui/generic-associated-types/issue-68644-codegen-selection.rs
+++ b/tests/ui/generic-associated-types/issue-68644-codegen-selection.rs
@@ -10,7 +10,7 @@ trait Fun {
impl<T> Fun for T {
type F<'a> = Self;
- //~^ ERROR expected a `Fn<()>` closure, found `T`
+ //~^ ERROR expected a `Fn()` closure, found `T`
}
fn main() {