]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/search-index.rs
Rollup merge of #100501 - RalfJung:miri-from-exposed-addr, r=Mark-Simulacrum
[rust.git] / src / test / rustdoc / search-index.rs
index db625f7a31fd99486e488c6cee03bec5f19de89a..d1d05eb886b00e144708c57e697eb7b9a3fba0ad 100644 (file)
@@ -9,18 +9,18 @@ mod private {
     pub struct Foo;
     impl Foo {
         pub fn test_method() {} // @hasraw - test_method
-        fn priv_method() {} // @!has - priv_method
+        fn priv_method() {} // @!hasraw - priv_method
     }
 
     pub trait PrivateTrait {
-        fn trait_method(&self) {} // @!has - priv_method
+        fn trait_method(&self) {} // @!hasraw - priv_method
     }
 }
 
 pub struct Bar;
 
 impl Deref for Bar {
-    // @!has search-index.js Target
+    // @!hasraw search-index.js Target
     type Target = Bar;
     fn deref(&self) -> &Bar { self }
 }