summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs')
-rw-r--r--tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs b/tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs
new file mode 100644
index 000000000..56aed77c1
--- /dev/null
+++ b/tests/ui/suggestions/removal-of-multiline-trait-bound-in-where-clause.rs
@@ -0,0 +1,30 @@
+struct Wrapper<T>(T);
+
+fn foo<T>(foo: Wrapper<T>)
+//~^ ERROR the size for values of type `T` cannot be known at compilation time
+where
+ T
+ :
+ ?
+ Sized
+{
+ //
+}
+
+fn bar<T>(foo: Wrapper<T>)
+//~^ ERROR the size for values of type `T` cannot be known at compilation time
+where T: ?Sized
+{
+ //
+}
+
+fn qux<T>(foo: Wrapper<T>)
+//~^ ERROR the size for values of type `T` cannot be known at compilation time
+where
+ T: ?Sized
+{
+ //
+}
+
+
+fn main() {}