blob: 4e1f1918e219360accf6d77e36abefaeeed84ba7 [file] [log] [blame]
#![crate_name="bar"]
pub trait Bar {}
pub struct Foo;
impl<'a> Bar for &'a char {}
impl Bar for Foo {}