summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-types-bounds.stderr
diff options
context:
space:
mode:
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, 0 insertions, 32 deletions
diff --git a/src/test/ui/variance/variance-types-bounds.stderr b/src/test/ui/variance/variance-types-bounds.stderr
deleted file mode 100644
index dbe8af75d..000000000
--- a/src/test/ui/variance/variance-types-bounds.stderr
+++ /dev/null
@@ -1,32 +0,0 @@
-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
-