summary refs log tree commit diff
path: root/src/test/run-make/used/Makefile
blob: 9d7aa30f874825068620a0b87b21e71bac0502d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
-include ../tools.mk

ifdef IS_WINDOWS
# Do nothing on MSVC.
all:
	exit 0
else
all:
	$(RUSTC) -C opt-level=3 --emit=obj used.rs
	nm $(TMPDIR)/used.o | grep FOO
endif