auto merge of #9368 : StrLght/rust/master, r=thestinger

This commit is contained in:
bors 2013-09-21 04:45:57 -07:00
commit 030fffa57c

View File

@ -28,7 +28,7 @@ let msg = Some(~"howdy");
// Take a reference to the contained string
match msg {
Some(ref m) => io::println(m),
Some(ref m) => io::println(*m),
None => ()
}