Skip to content

Commit 93b9574

Browse files
committed
Remove deprecated mutable type constructor from run-pass/issue-511
This was triggering a warning that was making the pretty-print test fail
1 parent cee7b4c commit 93b9574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/issue-511.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std;
22
import std::option;
33

4-
fn f<@T>(&o: mutable option::t<T>) {
4+
fn f<@T>(&o: option::t<T>) {
55
assert o == option::none;
66
}
77

0 commit comments

Comments
 (0)