core: Remove a useless test from option mod

This commit is contained in:
Brian Anderson 2012-02-20 22:43:33 -08:00
parent 4cd3d4ab1e
commit 4601810747

View file

@ -84,9 +84,6 @@ fn may<T>(opt: t<T>, f: fn(T)) {
alt opt { none {/* nothing */ } some(t) { f(t); } }
}
#[test]
fn test() { let _x = some::<int>(10); }
// Local Variables:
// mode: rust;
// fill-column: 78;