mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
241 B
Rust
17 lines
241 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
fn putc(&self, b: u8) { }
|
|
|
|
fn puts(&self, s: &str) {
|
|
for byte in s.bytes() {
|
|
self.putc(byte)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|