We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6ff6de commit 218a9acCopy full SHA for 218a9ac
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 6b42ad5ea0b3c885393ee104770b4be743807fbb
+refs/heads/master: df19b7a13a7e55b73be9fc633db6ec76c3793658
trunk/src/test/run-pass/issue-980.rs
@@ -0,0 +1,13 @@
+tag maybe_pointy {
+ no_pointy;
3
+ yes_pointy(@pointy);
4
+}
5
+
6
+type pointy = {
7
+ mutable x : maybe_pointy
8
+};
9
10
+fn main() {
11
+ let m = @{ mutable x : no_pointy };
12
+ m.x = yes_pointy(m);
13
0 commit comments