rust/tests/ui/traits/issue-87558.rs

12 lines
384 B
Rust
Raw Normal View History

2022-06-26 13:10:10 +00:00
struct ErrorKind;
struct Error(ErrorKind);
impl Fn(&isize) for Error {
//~^ ERROR manual implementations of `Fn` are experimental
//~| ERROR associated type bindings are not allowed here
//~| ERROR closure, found `Error`
//~| ERROR not all trait items implemented, missing: `call`
2022-06-26 13:10:10 +00:00
fn from() {} //~ ERROR method `from` is not a member of trait `Fn`
}
fn main() {}