summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-types-bounds.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/variance/variance-types-bounds.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/variance/variance-types-bounds.stderr')
-rw-r--r--src/test/ui/variance/variance-types-bounds.stderr32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/test/ui/variance/variance-types-bounds.stderr b/src/test/ui/variance/variance-types-bounds.stderr
new file mode 100644
index 000000000..dbe8af75d
--- /dev/null
+++ b/src/test/ui/variance/variance-types-bounds.stderr
@@ -0,0 +1,32 @@
+error[E0208]: [+, +]
+ --> $DIR/variance-types-bounds.rs:7:1
+ |
+LL | struct TestImm<A, B> {
+ | ^^^^^^^^^^^^^^^^^^^^
+
+error[E0208]: [+, o]
+ --> $DIR/variance-types-bounds.rs:13:1
+ |
+LL | struct TestMut<A, B:'static> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error[E0208]: [+, o]
+ --> $DIR/variance-types-bounds.rs:19:1
+ |
+LL | struct TestIndirect<A:'static, B:'static> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error[E0208]: [o, o]
+ --> $DIR/variance-types-bounds.rs:24:1
+ |
+LL | struct TestIndirect2<A:'static, B:'static> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error[E0208]: [o, o]
+ --> $DIR/variance-types-bounds.rs:38:1
+ |
+LL | struct TestObject<A, R> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 5 previous errors
+