12 lines
202 B
Rust
12 lines
202 B
Rust
//@ 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() { }
|