rust/tests/rustdoc/inline_cross/auxiliary/issue-33113.rs

8 lines
105 B
Rust
Raw Normal View History

2016-04-27 14:48:49 -05:00
#![crate_name="bar"]
pub trait Bar {}
pub struct Foo;
impl<'a> Bar for &'a char {}
impl Bar for Foo {}