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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 {}