rust/tests/source/issue_4636.rs
2021-01-16 11:17:23 -06:00

13 lines
No EOL
246 B
Rust

pub trait PrettyPrinter<'tcx>:
Printer<
'tcx,
Error = fmt::Error,
Path = Self,
Region = Self,
Type = Self,
DynExistential = Self,
Const = Self,
> + fmt::Write
{
//
}