summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-trait-matching.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/variance/variance-trait-matching.stderr')
-rw-r--r--src/test/ui/variance/variance-trait-matching.stderr12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/variance/variance-trait-matching.stderr b/src/test/ui/variance/variance-trait-matching.stderr
deleted file mode 100644
index 3308cc6d2..000000000
--- a/src/test/ui/variance/variance-trait-matching.stderr
+++ /dev/null
@@ -1,12 +0,0 @@
-error[E0621]: explicit lifetime required in the type of `get`
- --> $DIR/variance-trait-matching.rs:24:5
- |
-LL | fn get<'a, G>(get: &G) -> i32
- | -- help: add explicit lifetime `'a` to the type of `get`: `&'a G`
-...
-LL | pick(get, &22)
- | ^^^^^^^^^^^^^^ lifetime `'a` required
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0621`.