summaryrefslogtreecommitdiffstats
path: root/src/test/ui/symbol-names/trait-objects.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/symbol-names/trait-objects.rs')
-rw-r--r--src/test/ui/symbol-names/trait-objects.rs47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/test/ui/symbol-names/trait-objects.rs b/src/test/ui/symbol-names/trait-objects.rs
deleted file mode 100644
index 5bcbc0841..000000000
--- a/src/test/ui/symbol-names/trait-objects.rs
+++ /dev/null
@@ -1,47 +0,0 @@
-// Ensure that trait objects don't include more than one binder. See #83611
-
-// build-fail
-// revisions: v0
-//[v0]compile-flags: -C symbol-mangling-version=v0
-//[v0]normalize-stderr-test: "core\[.*?\]" -> "core[HASH]"
-
-#![feature(rustc_attrs)]
-
-trait Bar {
- fn method(&self) {}
-}
-
-impl Bar for &dyn FnMut(&u8) {
- #[rustc_symbol_name]
- //[v0]~^ ERROR symbol-name
- //[v0]~| ERROR demangling
- //[v0]~| ERROR demangling-alt
- fn method(&self) {}
-}
-
-trait Foo {
- fn method(&self) {}
-}
-
-impl Foo for &(dyn FnMut(&u8) + for<'b> Send) {
- #[rustc_symbol_name]
- //[v0]~^ ERROR symbol-name
- //[v0]~| ERROR demangling
- //[v0]~| ERROR demangling-alt
- fn method(&self) {}
-}
-
-trait Baz {
- fn method(&self) {}
-}
-
-impl Baz for &(dyn for<'b> Send + FnMut(&u8)) {
- #[rustc_symbol_name]
- //[v0]~^ ERROR symbol-name
- //[v0]~| ERROR demangling
- //[v0]~| ERROR demangling-alt
- fn method(&self) {}
-}
-
-fn main() {
-}