Skip to content

Commit 4601810

Browse files
committed
core: Remove a useless test from option mod
1 parent 4cd3d4a commit 4601810

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libcore/option.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,6 @@ fn may<T>(opt: t<T>, f: fn(T)) {
8484
alt opt { none {/* nothing */ } some(t) { f(t); } }
8585
}
8686

87-
#[test]
88-
fn test() { let _x = some::<int>(10); }
89-
9087
// Local Variables:
9188
// mode: rust;
9289
// fill-column: 78;

0 commit comments

Comments
 (0)