66//@ count 'foo/index.html' '//h2[@class="location"]' 0
77
88//@ matches 'foo/foo_mod/index.html' '//h1' 'Module foo_mod'
9- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
9+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
1010//@ matches - '//h2[@class="location"]' 'Module foo_mod'
1111pub mod foo_mod {
1212 pub struct __Thing { }
1313}
1414
1515extern "C" {
1616 //@ matches 'foo/fn.foo_ffn.html' '//h1' 'Function foo_ffn'
17- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
17+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
1818 pub fn foo_ffn ( ) ;
1919}
2020
2121//@ matches 'foo/fn.foo_fn.html' '//h1' 'Function foo_fn'
22- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
22+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
2323pub fn foo_fn ( ) { }
2424
2525//@ matches 'foo/trait.FooTrait.html' '//h1' 'Trait FooTrait'
26- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
26+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
2727//@ matches - '//h2[@class="location"]' 'FooTrait'
2828pub trait FooTrait { }
2929
3030//@ matches 'foo/struct.FooStruct.html' '//h1' 'Struct FooStruct'
31- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
31+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
3232//@ matches - '//h2[@class="location"]' 'FooStruct'
3333pub struct FooStruct ;
3434
3535//@ matches 'foo/enum.FooEnum.html' '//h1' 'Enum FooEnum'
36- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
36+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
3737//@ matches - '//h2[@class="location"]' 'FooEnum'
3838pub enum FooEnum { }
3939
4040//@ matches 'foo/type.FooType.html' '//h1' 'Type Alias FooType'
41- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
41+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
4242//@ matches - '//h2[@class="location"]' 'FooType'
4343pub type FooType = FooStruct ;
4444
4545//@ matches 'foo/macro.foo_macro.html' '//h1' 'Macro foo_macro'
46- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
46+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
4747#[ macro_export]
4848macro_rules! foo_macro {
4949 ( ) => { } ;
@@ -55,15 +55,15 @@ macro_rules! foo_macro {
5555mod bool { }
5656
5757//@ matches 'foo/static.FOO_STATIC.html' '//h1' 'Static FOO_STATIC'
58- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
58+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
5959pub static FOO_STATIC : FooStruct = FooStruct ;
6060
6161extern "C" {
6262 //@ matches 'foo/static.FOO_FSTATIC.html' '//h1' 'Static FOO_FSTATIC'
63- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
63+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
6464 pub static FOO_FSTATIC : FooStruct ;
6565}
6666
6767//@ matches 'foo/constant.FOO_CONSTANT.html' '//h1' 'Constant FOO_CONSTANT'
68- //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo:: '
68+ //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo'
6969pub const FOO_CONSTANT : FooStruct = FooStruct ;
0 commit comments