1 // compile-flags: -Cmetadata=aux
2 
3 #![doc(html_root_url = "http://example.com")]
4 
5 pub trait Foo {
foo(&self)6     fn foo(&self) {}
7 }
8