mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
219 B
Makefile
10 lines
219 B
Makefile
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
|