rust/tests/ui/issues/issue-20186.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
241 B
Rust
Raw Normal View History

//@ 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() {}