Skip to content

Commit c96f0bf

Browse files
committed
Implement the "simple typechecker", which avoids HM inference
1 parent 91b4cae commit c96f0bf

File tree

7 files changed

+854
-1553
lines changed

7 files changed

+854
-1553
lines changed

src/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,8 @@ TEST_XFAILS_X86 := $(MUT_BOX_XFAILS) \
361361
test/compile-fail/bad-send.rs \
362362
test/compile-fail/bad-recv.rs \
363363
test/compile-fail/infinite-tag-type-recursion.rs \
364-
test/compile-fail/infinite-vec-type-recursion.rs
364+
test/compile-fail/infinite-vec-type-recursion.rs \
365+
test/compile-fail/writing-through-read-alias.rs
365366

366367
TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
367368
acyclic-unwind.rs \
@@ -492,6 +493,7 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
492493
bad-recv.rs \
493494
infinite-tag-type-recursion.rs \
494495
infinite-vec-type-recursion.rs \
496+
writing-through-read-alias.rs \
495497
)
496498

497499
ifdef MINGW_CROSS

0 commit comments

Comments
 (0)