summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs')
-rw-r--r--tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs b/tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs
new file mode 100644
index 000000000..eecf2046c
--- /dev/null
+++ b/tests/ui/feature-gates/feature-gate-unboxed-closures-manual-impls.rs
@@ -0,0 +1,37 @@
+// 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.
+
+#![feature(fn_traits)]
+
+struct Foo;
+impl Fn<()> for Foo {
+//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
+//~| ERROR manual implementations of `Fn` are experimental
+ extern "rust-call" fn call(self, args: ()) -> () {}
+ //~^ ERROR rust-call ABI is subject to change
+}
+struct Foo1;
+impl FnOnce() for Foo1 {
+//~^ ERROR associated type bindings are not allowed here
+//~| ERROR manual implementations of `FnOnce` are experimental
+ extern "rust-call" fn call_once(self, args: ()) -> () {}
+ //~^ ERROR rust-call ABI is subject to change
+}
+struct Bar;
+impl FnMut<()> for Bar {
+//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
+//~| ERROR manual implementations of `FnMut` are experimental
+ extern "rust-call" fn call_mut(&self, args: ()) -> () {}
+ //~^ ERROR rust-call ABI is subject to change
+}
+struct Baz;
+impl FnOnce<()> for Baz {
+//~^ ERROR the precise format of `Fn`-family traits' type parameters is subject to change
+//~| ERROR manual implementations of `FnOnce` are experimental
+ extern "rust-call" fn call_once(&self, args: ()) -> () {}
+ //~^ ERROR rust-call ABI is subject to change
+}
+
+fn main() {}