We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f167efa commit e55fc73Copy full SHA for e55fc73
tests/ui/traits/cow-self-field-sized.rs
@@ -0,0 +1,9 @@
1
+//@ check-pass
2
+// https://github.com/rust-lang/rust/issues/129541
3
+
4
+#[derive(Clone)]
5
+struct Test {
6
+ field: std::borrow::Cow<'static, [Self]>,
7
+}
8
9
+fn main(){}
0 commit comments