summaryrefslogtreecommitdiffstats
path: root/src/test/ui/terr-sorts.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/terr-sorts.stderr')
-rw-r--r--src/test/ui/terr-sorts.stderr23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/ui/terr-sorts.stderr b/src/test/ui/terr-sorts.stderr
deleted file mode 100644
index 5a61a2fab..000000000
--- a/src/test/ui/terr-sorts.stderr
+++ /dev/null
@@ -1,23 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/terr-sorts.rs:10:14
- |
-LL | want_foo(b);
- | -------- ^ expected struct `Foo`, found struct `Box`
- | |
- | arguments to this function are incorrect
- |
- = note: expected struct `Foo`
- found struct `Box<Foo>`
-note: function defined here
- --> $DIR/terr-sorts.rs:8:4
- |
-LL | fn want_foo(f: Foo) {}
- | ^^^^^^^^ ------
-help: consider unboxing the value
- |
-LL | want_foo(*b);
- | +
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.