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 4a4383e commit 39b5edaCopy full SHA for 39b5eda
tests/rustdoc/deref/deref-methods-24686-target.rs
@@ -1,4 +1,5 @@
1
//@ known-bug: #24686
2
+//@ run-fail
3
#![crate_name = "foo"]
4
5
// test for https://github.com/rust-lang/rust/issues/24686
@@ -14,7 +15,7 @@ impl Foo<u32> {
14
15
//@ has foo/struct.Bar.html
16
//@ has - '//a[@href="#method.get_i32"]' 'get_i32'
17
//@ !has - '//a[@href="#method.get_u32"]' 'get_u32'
-//@ count - '//a[@class="method"]' 1
18
+//@ count - '//a[@class="fn"]' 1
19
pub struct Bar(Foo<i32>);
20
impl Deref for Bar {
21
type Target = Foo<i32>;
0 commit comments