Remove deprecated mutable type constructor from run-pass/issue-511

This was triggering a warning that was making the pretty-print test fail
This commit is contained in:
Brian Anderson 2011-09-22 23:08:59 -07:00
parent cee7b4caee
commit 93b9574d32

View file

@ -1,7 +1,7 @@
use std;
import std::option;
fn f<@T>(&o: mutable option::t<T>) {
fn f<@T>(&o: option::t<T>) {
assert o == option::none;
}