blob: 79dad71844f6ee3d8b2b60254590451eba4a4e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//@ 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() {}
|