summaryrefslogtreecommitdiffstats
path: root/tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr')
-rw-r--r--tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr b/tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr
new file mode 100644
index 000000000..9abc51424
--- /dev/null
+++ b/tests/ui/unsafe/unsafe-assign.thirunsafeck.stderr
@@ -0,0 +1,11 @@
+error[E0133]: mutation of layout constrained field is unsafe and requires unsafe function or block
+ --> $DIR/unsafe-assign.rs:12:5
+ |
+LL | foo.0.0 = 0;
+ | ^^^^^^^^^^^ mutation of layout constrained field
+ |
+ = note: mutating layout constrained fields cannot statically be checked for valid values
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0133`.