Skip to content

Commit f2236d8

Browse files
Add regression test for rust-lang#119529
1 parent d2c6faa commit f2236d8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// This is a regression test for <https://github.com/rust-lang/rust/issues/119529>.
2+
3+
#![crate_name = "foo"]
4+
5+
use std::cmp::PartialEq;
6+
7+
// @has 'foo/type.Dyn.html'
8+
// @has - '//*[@class="rust item-decl"]' 'pub type Dyn<Rhs> = dyn PartialEq<Rhs>;'
9+
pub type Dyn<Rhs> = dyn PartialEq<Rhs>;

0 commit comments

Comments
 (0)