summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dst/dst-sized-trait-param.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/dst/dst-sized-trait-param.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/dst/dst-sized-trait-param.stderr')
-rw-r--r--src/test/ui/dst/dst-sized-trait-param.stderr33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/ui/dst/dst-sized-trait-param.stderr b/src/test/ui/dst/dst-sized-trait-param.stderr
deleted file mode 100644
index 8ec94f5a3..000000000
--- a/src/test/ui/dst/dst-sized-trait-param.stderr
+++ /dev/null
@@ -1,33 +0,0 @@
-error[E0277]: the size for values of type `[isize]` cannot be known at compilation time
- --> $DIR/dst-sized-trait-param.rs:7:6
- |
-LL | impl Foo<[isize]> for usize { }
- | ^^^^^^^^^^^^ doesn't have a size known at compile-time
- |
- = help: the trait `Sized` is not implemented for `[isize]`
-note: required by a bound in `Foo`
- --> $DIR/dst-sized-trait-param.rs:5:11
- |
-LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
- | ^ required by this bound in `Foo`
-help: consider relaxing the implicit `Sized` restriction
- |
-LL | trait Foo<T: ?Sized> : Sized { fn take(self, x: &T) { } } // Note: T is sized
- | ++++++++
-
-error[E0277]: the size for values of type `[usize]` cannot be known at compilation time
- --> $DIR/dst-sized-trait-param.rs:10:6
- |
-LL | impl Foo<isize> for [usize] { }
- | ^^^^^^^^^^ doesn't have a size known at compile-time
- |
- = help: the trait `Sized` is not implemented for `[usize]`
-note: required by a bound in `Foo`
- --> $DIR/dst-sized-trait-param.rs:5:16
- |
-LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
- | ^^^^^ required by this bound in `Foo`
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0277`.