blob: 28cbde772c51d871d72056ac3fc43e840e770e43 [file] [log] [blame]
// build-pass (FIXME(62277): could be 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() {}