Skip to content

Commit 3671cdd

Browse files
jrudermanbrson
authored andcommitted
Remove comments complaining about https://github.com/graydon/rust/issues/633 since it is fixed
1 parent e91f8b5 commit 3671cdd

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/fuzzer/ast_match.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,9 @@ fn builtin_equal[T](&T a, &T b) -> bool {
2121
}
2222

2323
fn main() {
24-
// These pass
2524
assert builtin_equal(5, 5);
2625
assert !builtin_equal(5, 4);
27-
28-
// This passes
2926
assert !ivec_equal(~[5, 5], ~[5], builtin_equal);
30-
31-
// These crash
32-
// https://github.com/graydon/rust/issues/633
3327
assert !ivec_equal(~[5, 5], ~[5, 4], builtin_equal);
3428
assert !ivec_equal(~[5, 5], ~[4, 5], builtin_equal);
3529
assert ivec_equal(~[5, 5], ~[5, 5], builtin_equal);

0 commit comments

Comments
 (0)