summaryrefslogtreecommitdiffstats
path: root/src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr')
-rw-r--r--src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr b/src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr
new file mode 100644
index 000000000..e1464e023
--- /dev/null
+++ b/src/test/ui/transmutability/malformed-program-gracefulness/wrong-type-assume.stderr
@@ -0,0 +1,27 @@
+error[E0308]: mismatched types
+ --> $DIR/wrong-type-assume.rs:36:51
+ |
+LL | assert::is_transmutable::<Src, Dst, Context, {0u8}, false, false, false>();
+ | ^^^ expected `bool`, found `u8`
+
+error[E0308]: mismatched types
+ --> $DIR/wrong-type-assume.rs:37:58
+ |
+LL | assert::is_transmutable::<Src, Dst, Context, false, {0u8}, false, false>();
+ | ^^^ expected `bool`, found `u8`
+
+error[E0308]: mismatched types
+ --> $DIR/wrong-type-assume.rs:38:65
+ |
+LL | assert::is_transmutable::<Src, Dst, Context, false, false, {0u8}, false>();
+ | ^^^ expected `bool`, found `u8`
+
+error[E0308]: mismatched types
+ --> $DIR/wrong-type-assume.rs:39:72
+ |
+LL | assert::is_transmutable::<Src, Dst, Context, false, false, false, {0u8}>();
+ | ^^^ expected `bool`, found `u8`
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0308`.