rust/src/test/ui/dont-suggest-private-trait-method.rs
2018-12-25 21:08:33 -07:00

7 lines
137 B
Rust

struct T;
fn main() {
T::new();
//~^ ERROR no function or associated item named `new` found for type `T` in the current scope
}