]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/auto_aliases.rs
Auto merge of #107529 - Zoxc:inline-tweak-profile, r=cjgillot
[rust.git] / tests / rustdoc / auto_aliases.rs
1 #![feature(auto_traits)]
2
3 // @has auto_aliases/trait.Bar.html '//*[@data-aliases="auto_aliases::Foo"]' 'impl Bar for Foo'
4 pub struct Foo;
5
6 pub auto trait Bar {}