about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-08-23 07:07:37 +0000
committerbors <bors@rust-lang.org>2023-08-23 07:07:37 +0000
commit8b8c7d7ffdeac951c1742bfbb082fcbaf433885f (patch)
treef1850a2ab04e572bb9af37a31f00a62a194b94e3
parent6444211205a879ef76f8faa4e8d0ad5ab26c95f1 (diff)
parenta4b25034d66f368c4ad84b64309d7b9bb43f59c3 (diff)
downloadrust-8b8c7d7ffdeac951c1742bfbb082fcbaf433885f.tar.gz
rust-8b8c7d7ffdeac951c1742bfbb082fcbaf433885f.zip
Auto merge of #15504 - lnicola:sync-from-rust, r=lnicola
minor: Sync from downstream
-rw-r--r--crates/test-utils/src/fixture.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/test-utils/src/fixture.rs b/crates/test-utils/src/fixture.rs
index 75e7a3fec00..3f8b5a08969 100644
--- a/crates/test-utils/src/fixture.rs
+++ b/crates/test-utils/src/fixture.rs
@@ -313,7 +313,7 @@ impl FixtureWithProjectMeta {
 }
 
 impl MiniCore {
-    const RAW_SOURCE: &str = include_str!("./minicore.rs");
+    const RAW_SOURCE: &'static str = include_str!("./minicore.rs");
 
     fn has_flag(&self, flag: &str) -> bool {
         self.activated_flags.iter().any(|it| it == flag)