diff options
| author | blyxyas <blyxyas@gmail.com> | 2024-04-29 15:44:51 +0200 |
|---|---|---|
| committer | blyxyas <blyxyas@gmail.com> | 2024-04-29 15:57:09 +0200 |
| commit | d31b7db8e46857853cc722de0158e73e16b09ed9 (patch) | |
| tree | d60d5cfd22f8d1b5259a18a8115e89f12face362 /tests | |
| parent | 90846015cc99aa90290c1f4ee95c571fff6901ef (diff) | |
| download | rust-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.rs | 4 |
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, }; |
