11 lines
134 B
Text
11 lines
134 B
Text
|
|
struct Foo;
|
||
|
|
impl Foo {
|
||
|
|
fn associated(x: usize) {
|
||
|
|
print!("{};", x);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
repeat(Foo::associated, 8);
|
||
|
|
}
|