diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-10-12 15:07:11 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-10-12 15:07:11 +0200 |
| commit | 51a993f4a6f70765b2def104e9f1ba9549b37eb5 (patch) | |
| tree | 980b06895959a51cc8dcf7f20d9a1b8b5fc2669d | |
| parent | d6dbff56e4789dc92c053881a8fe4d20f3bc28cd (diff) | |
| download | rust-51a993f4a6f70765b2def104e9f1ba9549b37eb5.tar.gz rust-51a993f4a6f70765b2def104e9f1ba9549b37eb5.zip | |
Add test for associated constants in the sidebar
| -rw-r--r-- | src/test/rustdoc/associated-consts.rs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/rustdoc/associated-consts.rs b/src/test/rustdoc/associated-consts.rs new file mode 100644 index 00000000000..6ae5e20632e --- /dev/null +++ b/src/test/rustdoc/associated-consts.rs @@ -0,0 +1,31 @@ +#![crate_name = "foo"] + +pub trait Trait { + const FOO: u32 = 12; + + fn foo(); +} + +pub struct Bar; + +// @has 'foo/struct.Bar.html' +// @has - '//h3[@class="sidebar-title"]' 'Associated Constants' +// @has - '//div[@class="sidebar-elems"]//div[@class="sidebar-links"]/a' 'FOO' +impl Trait for Bar { + const FOO: u32 = 1; + + fn foo() {} +} + +pub enum Foo { + A, +} + +// @has 'foo/enum.Foo.html' +// @has - '//h3[@class="sidebar-title"]' 'Associated Constants' +// @has - '//div[@class="sidebar-elems"]//div[@class="sidebar-links"]/a' 'FOO' +impl Trait for Foo { + const FOO: u32 = 1; + + fn foo() {} +} |
