File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 58bf592dcc14a6b7c9609536f2094c3de135f337
2
+ refs/heads/master: 156e1b363fb7058c7bd734c5664b8f467b1afcd5
Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \
391
391
test/run-pass/obj-as.rs \
392
392
test/run-pass/vec-slice.rs \
393
393
test/run-pass/fn-lval.rs \
394
- test/run-pass/generic-fn-infer.rs \
395
394
test/run-pass/generic-recursive-tag.rs \
396
395
test/run-pass/iter-ret.rs \
397
396
test/run-pass/lib-io.rs \
@@ -439,6 +438,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
439
438
drop-bind-thunk-args.rs \
440
439
drop-on-ret.rs \
441
440
fact.rs \
441
+ generic-fn-infer.rs \
442
442
hello.rs \
443
443
int.rs \
444
444
i32-sub.rs \
Original file line number Diff line number Diff line change 2
2
3
3
// Issue #45: infer type parameters in function applications
4
4
5
- fn id[ T ] ( T x) -> T {
5
+ fn id[ T ] ( & T x) -> T {
6
6
ret x;
7
7
}
8
8
You can’t perform that action at this time.
0 commit comments