From adb1754e4dcbf61abb93ac7604aed4e8bca080a8 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 3 Nov 2010 17:10:37 -0700 Subject: Move the option type to its own module --- src/test/run-pass/lib-vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test') diff --git a/src/test/run-pass/lib-vec.rs b/src/test/run-pass/lib-vec.rs index 0f32fbc7..6f19715d 100644 --- a/src/test/run-pass/lib-vec.rs +++ b/src/test/run-pass/lib-vec.rs @@ -32,7 +32,7 @@ fn test_slice() { fn test_map() { fn square(&int x) -> int { ret x * x; } - let std.util.operator[int, int] op = square; + let std.option.operator[int, int] op = square; let vec[int] v = vec(1, 2, 3, 4, 5); let vec[int] s = std._vec.map[int, int](op, v); let int i = 0; -- cgit v1.2.3