blob: f29f282f78764e2bed591179d69f5d81263ae52c (
plain)
1
2
3
4
5
6
7
8
9
|
include ../tools.mk
# Test that emitting an error because of arithmetic
# overflow lint does not leave .o files around
# because of interrupted codegen.
all:
$(RUSTC) input.rs; test $$? -eq 1
ls *.o; test $$? -ne 0
|