13 lines
304 B
Rust
13 lines
304 B
Rust
// compile-pass
|
|
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);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|