mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
433da1fc04
They pass fine.
7 lines
166 B
Makefile
7 lines
166 B
Makefile
include ../tools.mk
|
|
|
|
# This test ensures that rustc does not panic with `-o ""` option.
|
|
|
|
all:
|
|
$(RUSTC) -o "" blank.rs 2>&1 | $(CGREP) -i 'panic' && exit 1 || exit 0
|