2019-11-03 18:00:00 -06:00
|
|
|
// check-pass
|
2017-05-03 12:07:30 -05:00
|
|
|
pub trait LineFormatter<'a> {
|
|
|
|
type Iter: Iterator<Item=&'a str> + 'a;
|
|
|
|
fn iter(&'a self, line: &'a str) -> Self::Iter;
|
|
|
|
|
|
|
|
fn dimensions(&'a self, line: &'a str) {
|
|
|
|
let iter: Self::Iter = self.iter(line);
|
|
|
|
<_ as IntoIterator>::into_iter(iter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-29 12:25:40 -06:00
|
|
|
fn main() {}
|