]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/deref-typedef.rs
rustdoc: HTML escape crate version
[rust.git] / src / test / rustdoc / deref-typedef.rs
index b2dc20a5030e7705b58fd19094c07c2be6592c82..770f8d7289c3bb2ce26a7c3698f6999a9afc7cc3 100644 (file)
@@ -1,19 +1,33 @@
 #![crate_name = "foo"]
 
 // @has 'foo/struct.Bar.html'
-// @has '-' '//*[@id="deref-methods"]' 'Methods from Deref<Target = FooB>'
-// @has '-' '//*[@class="impl-items"]//*[@id="method.happy"]' 'pub fn happy(&self)'
-// @has '-' '//*[@class="sidebar-title"]' 'Methods from Deref<Target=FooB>'
-// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.happy"]' 'happy'
+// @has '-' '//*[@id="deref-methods"]' 'Methods from Deref<Target = FooC>'
+// @has '-' '//*[@class="impl-items"]//*[@id="method.foo_a"]' 'pub fn foo_a(&self)'
+// @has '-' '//*[@class="impl-items"]//*[@id="method.foo_b"]' 'pub fn foo_b(&self)'
+// @has '-' '//*[@class="impl-items"]//*[@id="method.foo_c"]' 'pub fn foo_c(&self)'
+// @has '-' '//*[@class="sidebar-title"]' 'Methods from Deref<Target=FooC>'
+// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.foo_a"]' 'foo_a'
+// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.foo_b"]' 'foo_b'
+// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.foo_c"]' 'foo_c'
+
 pub struct FooA;
 pub type FooB = FooA;
+pub type FooC = FooB;
 
 impl FooA {
-    pub fn happy(&self) {}
+    pub fn foo_a(&self) {}
+}
+
+impl FooB {
+    pub fn foo_b(&self) {}
+}
+
+impl FooC {
+    pub fn foo_c(&self) {}
 }
 
 pub struct Bar;
 impl std::ops::Deref for Bar {
-    type Target = FooB;
-    fn deref(&self) -> &FooB { unimplemented!() }
+    type Target = FooC;
+    fn deref(&self) -> &Self::Target { unimplemented!() }
 }