mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 13:05:38 +00:00
9 lines
323 B
Makefile
9 lines
323 B
Makefile
# ignore-windows
|
|
|
|
include ../tools.mk
|
|
|
|
all:
|
|
echo 'mod unknown;' | $(RUSTC) --crate-type rlib - >$(TMPDIR)/unknown-mod.stdout 2>$(TMPDIR)/unknown-mod.stderr || echo "failed successfully"
|
|
$(RUSTC_TEST_OP) "$(TMPDIR)"/unknown-mod.stdout unknown-mod.stdout
|
|
$(RUSTC_TEST_OP) "$(TMPDIR)"/unknown-mod.stderr unknown-mod.stderr
|