blob: cb1a92e809a9dc8109c98377c9185f85526f630c [file] [log] [blame] [edit]
//@ check-pass
//! Ensure the private trait Bar isn't complained about.
#![deny(missing_docs)]
mod foo {
trait Bar { fn bar(&self) { } }
impl Bar for i8 { fn bar(&self) { } }
}
fn main() { }