summaryrefslogtreecommitdiffstats
path: root/tests/ui/layout/transmute-to-tail-with-err.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/layout/transmute-to-tail-with-err.stderr')
-rw-r--r--tests/ui/layout/transmute-to-tail-with-err.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/layout/transmute-to-tail-with-err.stderr b/tests/ui/layout/transmute-to-tail-with-err.stderr
new file mode 100644
index 000000000..97ab59c39
--- /dev/null
+++ b/tests/ui/layout/transmute-to-tail-with-err.stderr
@@ -0,0 +1,14 @@
+error[E0412]: cannot find type `T` in this scope
+ --> $DIR/transmute-to-tail-with-err.rs:3:26
+ |
+LL | struct Bar(Box<dyn Trait<T>>);
+ | ^ not found in this scope
+ |
+help: you might be missing a type parameter
+ |
+LL | struct Bar<T>(Box<dyn Trait<T>>);
+ | +++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0412`.