]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/auto_aliases.rs
Rollup merge of #68540 - GuillaumeGomez:err-codes-cleanup-e0229-e0261, r=Dylan-DPC
[rust.git] / src / test / rustdoc / auto_aliases.rs
1 #![feature(optin_builtin_traits)]
2
3 // @has auto_aliases/trait.Bar.html '//h3[@aliases="auto_aliases::Foo"]' 'impl Bar for Foo'
4 pub struct Foo;
5
6 pub auto trait Bar {}