File tree Expand file tree Collapse file tree 6 files changed +15
-7
lines changed Expand file tree Collapse file tree 6 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ run-make/forced-unwind-terminate-pof/Makefile
7373run-make/foreign-double-unwind/Makefile
7474run-make/foreign-exceptions/Makefile
7575run-make/foreign-rust-exceptions/Makefile
76- run-make/fpic/Makefile
7776run-make/glibc-staticlib-args/Makefile
7877run-make/inaccessible-temp-dir/Makefile
7978run-make/include_bytes_deps/Makefile
@@ -104,7 +103,6 @@ run-make/issue-33329/Makefile
104103run-make/issue-35164/Makefile
105104run-make/issue-36710/Makefile
106105run-make/issue-37839/Makefile
107- run-make/issue-37893/Makefile
108106run-make/issue-40535/Makefile
109107run-make/issue-47384/Makefile
110108run-make/issue-47551/Makefile
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ // a.rs is a procedural macro crate, on which b.rs and c.rs depend. A now
2+ // patched bug caused a compilation failure if the proc-macro crate was
3+ // initialized with its dependents in this exact order. This test checks
4+ // that compilation succeeds even when initialization is done in this order.
5+ // See https://github.com/rust-lang/rust/issues/37893
6+
7+ //@ ignore-cross-compile
8+
9+ use run_make_support:: rustc;
10+
11+ fn main ( ) {
12+ rustc ( ) . input ( "a.rs" ) . run ( ) ;
13+ rustc ( ) . input ( "b.rs" ) . run ( ) ;
14+ rustc ( ) . input ( "c.rs" ) . run ( ) ;
15+ }
You can’t perform that action at this time.
0 commit comments