summaryrefslogtreecommitdiffstats
path: root/tests/ui/transmutability/malformed-program-gracefulness/unknown_src.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/transmutability/malformed-program-gracefulness/unknown_src.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/transmutability/malformed-program-gracefulness/unknown_src.stderr b/tests/ui/transmutability/malformed-program-gracefulness/unknown_src.stderr
new file mode 100644
index 000000000..a55d71d80
--- /dev/null
+++ b/tests/ui/transmutability/malformed-program-gracefulness/unknown_src.stderr
@@ -0,0 +1,14 @@
+error[E0412]: cannot find type `Src` in this scope
+ --> $DIR/unknown_src.rs:20:31
+ |
+LL | assert::is_transmutable::<Src, Dst, Context>();
+ | ^^^ not found in this scope
+ |
+help: you might be missing a type parameter
+ |
+LL | fn should_gracefully_handle_unknown_src<Src>() {
+ | +++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0412`.