use ;
use Error;
/// A helper error type that cannot be instantiated.
///
/// This error is used in [`ConcatWriter`] and [`ConcatTryWriter`]
/// there [`writeln!`] is supposed to return [`Result`]
/// but the `Result::Err` variant is not possible.
///
/// [`ConcatWriter`]: struct.ConcatWriter.html
/// [`ConcatTryWriter`]: struct.ConcatTryWriter.html
/// [`writeln!`]: https://doc.rust-lang.org/std/macro.writeln.html
/// [`Result`]: https://doc.rust-lang.org/std/result/