summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/issue-26092/Makefile
blob: 885f45a022431e46a79fe77357fb058ad4ba841f (plain)
1
2
3
4
5
6
-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