blob: a97f36d19872c187ed17fb2e4b8575e03fc0c7ff [file] [log] [blame]
//@ known-bug: #105275
//@ compile-flags: -Copt-level=0
pub fn encode_num<Writer: ExampleWriter>(n: u32, mut writer: Writer) -> Result<(), Writer::Error> {
if n > 15 {
encode_num(n / 16, &mut writer)?;
}
Ok(())
}
pub trait ExampleWriter {
type Error;
}
impl<'a, T: ExampleWriter> ExampleWriter for &'a mut T {
type Error = T::Error;
}
struct Error;
impl ExampleWriter for Error {
type Error = ();
}
fn main() {
encode_num(69, &mut Error).unwrap();
}