blob: 62f6bcf15e3e74edd6b674d05a8af0a2ce416944 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
trait Str { fn foo(&self) {} }
impl Str for str {}
impl<'a, S: ?Sized> Str for &'a S where S: Str {}
fn main() {
let _: &dyn Str = &"x";
}