rewrite and rename issue-18943 to rmake

This commit is contained in:
Oneirical 2024-06-14 12:08:43 -04:00
parent 2c7afc114d
commit d9162fd97f
5 changed files with 13 additions and 9 deletions

View File

@ -52,7 +52,6 @@ run-make/issue-107094/Makefile
run-make/issue-109934-lto-debuginfo/Makefile
run-make/issue-14698/Makefile
run-make/issue-15460/Makefile
run-make/issue-18943/Makefile
run-make/issue-22131/Makefile
run-make/issue-25581/Makefile
run-make/issue-26006/Makefile

View File

@ -1,7 +0,0 @@
include ../tools.mk
# Regression test for ICE #18943 when compiling as lib
all:
$(RUSTC) foo.rs --crate-type lib
$(call REMOVE_RLIBS,foo) && exit 0 || exit 1

View File

@ -0,0 +1,13 @@
// Inside a library, implementing a trait for another trait
// with a lifetime used to cause an internal compiler error (ICE).
// This test checks that this bug does not make a resurgence -
// first by ensuring successful compilation, then verifying that
// the lib crate-type flag was actually followed.
// See https://github.com/rust-lang/rust/issues/18943
use run_make_support::{count_rlibs, rustc};
fn main() {
rustc().input("foo.rs").crate_type("lib").run();
assert_eq!(count_rlibs("foo"), 1);
}

View File

@ -25,4 +25,3 @@ fn main() {
rustc_foo.run();
rustc_foo_panic.run();
}