Skip to content

Commit

Permalink
Rollup merge of rust-lang#110147 - JohnTitor:issue-104916, r=compiler…
Browse files Browse the repository at this point in the history
…-errors

Add regression test for rust-lang#104916

Closes rust-lang#104916
I haven't tested if it still passes with debug assertions enabled so it'd be better to wait for CI to be green.
r? compiler-errors
  • Loading branch information
JohnTitor authored Apr 11, 2023
2 parents 7aa7496 + 271ac7b commit c31ef77
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
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

0 comments on commit c31ef77

Please sign in to comment.