Skip to content

Add regression test for #104916 #110147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions tests/ui/associated-type-bounds/issue-104916.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#![feature(associated_type_bounds)]

trait B {
type AssocType;
}

fn f()
where
dyn for<'j> B<AssocType: 'j>:,
//~^ ERROR: associated type bounds are only allowed in where clauses and function signatures
{
}

fn main() {}
8 changes: 8 additions & 0 deletions tests/ui/associated-type-bounds/issue-104916.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
error: associated type bounds are only allowed in where clauses and function signatures, not in bounds
--> $DIR/issue-104916.rs:9:19
|
LL | dyn for<'j> B<AssocType: 'j>:,
| ^^^^^^^^^^^^^

error: aborting due to previous error