2015-01-12 10:27:25 -05:00
|
|
|
// Test that manual impls of the `Fn` traits are not possible without
|
|
|
|
// a feature gate. In fact, the specialized check for these cases
|
|
|
|
// never triggers (yet), because they encounter other problems around
|
|
|
|
// angle bracket vs parentheses notation.
|
|
|
|
|
2019-01-02 17:14:24 +03:00
|
|
|
#![feature(fn_traits)]
|
2014-12-05 15:53:30 -08:00
|
|
|
|
|
|
|
struct Foo;
|
2015-01-12 10:27:25 -05:00
|
|
|
impl Fn<()> for Foo {
|
2023-10-31 13:45:26 +00:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
|
|
|
//~| ERROR manual implementations of `Fn` are experimental
|
|
|
|
//~| ERROR expected a `FnMut()` closure, found `Foo`
|
2015-03-11 10:08:33 -04:00
|
|
|
extern "rust-call" fn call(self, args: ()) -> () {}
|
2015-04-01 15:21:03 -04:00
|
|
|
//~^ ERROR rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
//~| ERROR `call` has an incompatible type for trait
|
2015-01-12 10:27:25 -05:00
|
|
|
}
|
|
|
|
struct Foo1;
|
2015-03-11 10:08:33 -04:00
|
|
|
impl FnOnce() for Foo1 {
|
2024-05-27 23:53:46 +02:00
|
|
|
//~^ ERROR associated item constraints are not allowed here
|
2023-10-31 13:45:26 +00:00
|
|
|
//~| ERROR manual implementations of `FnOnce` are experimental
|
|
|
|
//~| ERROR not all trait items implemented
|
2015-03-11 10:08:33 -04:00
|
|
|
extern "rust-call" fn call_once(self, args: ()) -> () {}
|
2015-04-01 15:21:03 -04:00
|
|
|
//~^ ERROR rust-call ABI is subject to change
|
2014-12-05 15:53:30 -08:00
|
|
|
}
|
|
|
|
struct Bar;
|
2015-01-12 10:27:25 -05:00
|
|
|
impl FnMut<()> for Bar {
|
2023-10-31 13:45:26 +00:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
|
|
|
//~| ERROR manual implementations of `FnMut` are experimental
|
|
|
|
//~| ERROR expected a `FnOnce()` closure, found `Bar`
|
2014-12-05 15:53:30 -08:00
|
|
|
extern "rust-call" fn call_mut(&self, args: ()) -> () {}
|
2015-04-01 15:21:03 -04:00
|
|
|
//~^ ERROR rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
//~| ERROR incompatible type for trait
|
2014-12-05 15:53:30 -08:00
|
|
|
}
|
|
|
|
struct Baz;
|
2015-01-12 10:27:25 -05:00
|
|
|
impl FnOnce<()> for Baz {
|
2023-10-31 13:45:26 +00:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
|
|
|
//~| ERROR manual implementations of `FnOnce` are experimental
|
|
|
|
//~| ERROR not all trait items implemented
|
2014-12-05 15:53:30 -08:00
|
|
|
extern "rust-call" fn call_once(&self, args: ()) -> () {}
|
2015-04-01 15:21:03 -04:00
|
|
|
//~^ ERROR rust-call ABI is subject to change
|
2014-12-05 15:53:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|