rust/tests/rustdoc/auto_aliases.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
161 B
Rust
Raw Normal View History

#![feature(auto_traits)]
2020-01-21 03:42:52 +08:00
// @has auto_aliases/trait.Bar.html '//*[@data-aliases="auto_aliases::Foo"]' 'impl Bar for Foo'
2020-01-21 03:42:52 +08:00
pub struct Foo;
pub auto trait Bar {}