We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c6faa commit f2236d8Copy full SHA for f2236d8
tests/rustdoc/issue-119529-middle-const-ty.rs
@@ -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