mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
433da1fc04
They pass fine.
9 lines
248 B
Makefile
9 lines
248 B
Makefile
include ../tools.mk
|
|
|
|
# Test that hir-tree output doesn't crash and includes
|
|
# the string constant we would expect to see.
|
|
|
|
all:
|
|
$(RUSTC) -o $(TMPDIR)/input.hir -Z unpretty=hir-tree input.rs
|
|
$(CGREP) '"Hello, Rustaceans!\n"' < $(TMPDIR)/input.hir
|