File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ impl<T> From<(Script, T)> for Elevated<T> {
160160
161161/// Create an instance of [`Elevated<T>`].
162162pub ( crate ) fn elevate < T > ( script : Script , inner : T ) -> Elevated < T > {
163- Elevated { script , inner }
163+ Elevated { inner , script }
164164}
165165
166166/// A character which might appear in source code.
Original file line number Diff line number Diff line change 2222#![ allow( clippy:: match_wild_err_arm) ] // fix later
2323#![ allow( clippy:: verbose_bit_mask) ] // fix later
2424#![ allow( clippy:: redundant_closure_for_method_calls) ] // fix later
25- #![ allow( clippy:: inconsistent_struct_constructor) ] // fix soon
2625#![ allow( clippy:: manual_assert) ] // fix soon
2726#![ allow( clippy:: if_not_else) ] // fix soon
2827#![ allow( clippy:: doc_markdown) ] // fix soon
3332#![ allow( clippy:: match_wildcard_for_single_variants) ] // fix soon
3433#![ allow( clippy:: trivially_copy_pass_by_ref) ] // fix soon
3534#![ allow( clippy:: unnecessary_wraps) ] // fix soon
35+ #![ warn( clippy:: inconsistent_struct_constructor) ] // fix soon
3636
3737mod ast;
3838mod collections;
You can’t perform that action at this time.
0 commit comments