about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorblyxyas <blyxyas@gmail.com>2024-04-29 15:44:51 +0200
committerblyxyas <blyxyas@gmail.com>2024-04-29 15:57:09 +0200
commitd31b7db8e46857853cc722de0158e73e16b09ed9 (patch)
treed60d5cfd22f8d1b5259a18a8115e89f12face362 /tests
parent90846015cc99aa90290c1f4ee95c571fff6901ef (diff)
downloadrust-d31b7db8e46857853cc722de0158e73e16b09ed9.tar.gz
rust-d31b7db8e46857853cc722de0158e73e16b09ed9.zip
[Refactor] Rename Lint and LintGroup\'s is_loaded to is_externally_loaded
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/statics/nested_struct.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/statics/nested_struct.rs b/tests/ui/statics/nested_struct.rs
index f5819f50789..6745e102962 100644
--- a/tests/ui/statics/nested_struct.rs
+++ b/tests/ui/statics/nested_struct.rs
@@ -9,7 +9,7 @@ pub struct Lint {
     pub name: &'static str,
     pub desc: &'static str,
     pub report_in_external_macro: bool,
-    pub is_loaded: bool,
+    pub is_externally_loaded: bool,
     pub crate_level_only: bool,
 }
 
@@ -17,7 +17,7 @@ static FOO: &Lint = &Lint {
     name: &"foo",
     desc: "desc",
     report_in_external_macro: false,
-    is_loaded: true,
+    is_externally_loaded: true,
     crate_level_only: false,
 };