diff --git a/src/libstd/treemap.rs b/src/libstd/treemap.rs index 127c007a25f..ee647862d96 100644 --- a/src/libstd/treemap.rs +++ b/src/libstd/treemap.rs @@ -266,7 +266,7 @@ impl TreeSet { } /// Visit the values (in-order) representing the union - pure fn union(&self, _other: &TreeSet, _f: fn(&T) -> bool) -> TreeSet { + pure fn union(&self, _other: &TreeSet, _f: fn(&T) -> bool) { fail ~"not yet implemented" // TODO } }