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 {
|
2019-01-02 17:14:24 +03:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
2020-04-16 02:00:23 +02:00
|
|
|
//~| ERROR manual implementations of `Fn` are experimental
|
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
|
2015-01-12 10:27:25 -05:00
|
|
|
}
|
|
|
|
struct Foo1;
|
2015-03-11 10:08:33 -04:00
|
|
|
impl FnOnce() for Foo1 {
|
2019-01-02 17:14:24 +03:00
|
|
|
//~^ ERROR associated type bindings are not allowed here
|
2020-04-16 02:00:23 +02:00
|
|
|
//~| ERROR manual implementations of `FnOnce` are experimental
|
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 {
|
2019-01-02 17:14:24 +03:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
2020-04-16 02:00:23 +02:00
|
|
|
//~| ERROR manual implementations of `FnMut` are experimental
|
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
|
2014-12-05 15:53:30 -08:00
|
|
|
}
|
|
|
|
struct Baz;
|
2015-01-12 10:27:25 -05:00
|
|
|
impl FnOnce<()> for Baz {
|
2019-01-02 17:14:24 +03:00
|
|
|
//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
|
2020-04-16 02:00:23 +02:00
|
|
|
//~| ERROR manual implementations of `FnOnce` are experimental
|
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() {}
|