7 lines
166 B
Rust
7 lines
166 B
Rust
|
#![feature(optin_builtin_traits)]
|
||
|
|
||
|
// @has auto_aliases/trait.Bar.html '//h3[@aliases="auto_aliases::Foo"]' 'impl Bar for Foo'
|
||
|
pub struct Foo;
|
||
|
|
||
|
pub auto trait Bar {}
|