auto merge of #13650 : gmjosack/rust/master, r=alexcrichton

Feels strange to have the order be arbitrary here. Order them the same.
This commit is contained in:
bors 2014-04-20 22:26:33 -07:00
commit e4f5190423
1 changed files with 1 additions and 1 deletions

View File

@ -1883,8 +1883,8 @@ impl Shape {
let s = Circle(Point { x: 1.0, y: 2.0 }, 3.0);
(~s).draw_owned();
(&s).draw_reference();
(~s).draw_owned();
s.draw_value();
~~~