mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 01:42:54 +03:00
Remove an obsolete FIXME in stdtest/deque.rs. Closes #140.
This commit is contained in:
@@ -176,11 +176,9 @@ fn reccyeq(a: &reccy, b: &reccy) -> bool {
|
||||
let eq3: eqfn[taggy] = taggyeq;
|
||||
test_parameterized[taggy](eq3, one(1), two(1, 2), three(1, 2, 3),
|
||||
two(17, 42));
|
||||
/*
|
||||
* FIXME: Segfault. Also appears to be caused only after upcall_grow_task
|
||||
|
||||
log "*** test parameterized: taggypar[int]";
|
||||
let eqfn[taggypar[int]] eq4 = taggypareq[int];
|
||||
let eq4: eqfn[taggypar[int]] = taggypareq[int];
|
||||
test_parameterized[taggypar[int]](eq4,
|
||||
onepar[int](1),
|
||||
twopar[int](1, 2),
|
||||
@@ -188,8 +186,6 @@ fn reccyeq(a: &reccy, b: &reccy) -> bool {
|
||||
twopar[int](17, 42));
|
||||
log "*** end test parameterized: taggypar[int]";
|
||||
|
||||
*/
|
||||
|
||||
log "*** test parameterized: reccy";
|
||||
let reccy1: reccy = {x: 1, y: 2, t: one(1)};
|
||||
let reccy2: reccy = {x: 345, y: 2, t: two(1, 2)};
|
||||
@@ -199,4 +195,4 @@ fn reccyeq(a: &reccy, b: &reccy) -> bool {
|
||||
test_parameterized[reccy](eq5, reccy1, reccy2, reccy3, reccy4);
|
||||
log "*** end test parameterized: reccy";
|
||||
log "*** done";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user