about summary refs log tree commit diff
path: root/tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed')
-rw-r--r--tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed b/tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed
new file mode 100644
index 00000000000..69487c565c9
--- /dev/null
+++ b/tests/ui/suggestions/object-unsafe-trait-should-use-where-sized.fixed
@@ -0,0 +1,13 @@
+// run-rustfix
+#![allow(unused_variables, dead_code)]
+
+trait Trait {
+    fn foo(&self) where Self: Other, Self: Sized { }
+    fn bar(self: &Self) {} //~ ERROR invalid `self` parameter type
+}
+
+fn bar(x: &dyn Trait) {} //~ ERROR the trait `Trait` cannot be made into an object
+
+trait Other {}
+
+fn main() {}