We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef75a6 commit c851d2aCopy full SHA for c851d2a
src/libstd/sort.rs
@@ -1146,10 +1146,10 @@ mod big_tests {
1146
}
1147
1148
impl LVal: Ord {
1149
- pure fn lt(other: &LVal) -> bool { self.val < other.val }
1150
- pure fn le(other: &LVal) -> bool { self.val <= other.val }
1151
- pure fn gt(other: &LVal) -> bool { self.val > other.val }
1152
- pure fn ge(other: &LVal) -> bool { self.val >= other.val }
+ pure fn lt(other: &a/LVal/&self) -> bool { self.val < other.val }
+ pure fn le(other: &a/LVal/&self) -> bool { self.val <= other.val }
+ pure fn gt(other: &a/LVal/&self) -> bool { self.val > other.val }
+ pure fn ge(other: &a/LVal/&self) -> bool { self.val >= other.val }
1153
1154
1155
0 commit comments