summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/inline_cross/auxiliary/issue-33113.rs
blob: 4e1f1918e219360accf6d77e36abefaeeed84ba7 (plain)
1
2
3
4
5
6
7
#![crate_name="bar"]

pub trait Bar {}
pub struct Foo;

impl<'a> Bar for &'a char {}
impl Bar for Foo {}