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, 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
+