mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-03 14:12:53 +00:00
Remove unnecessary import
This commit is contained in:
parent
2726a3506f
commit
ba1a3fa62e
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
use crate::layout::{
|
use crate::layout::{
|
||||||
Builtin, CapturesNiche, ClosureRepresentation, LambdaName, LambdaSet, Layout, LayoutCache,
|
Builtin, CapturesNiche, ClosureRepresentation, LambdaName, LambdaSet, Layout, LayoutCache,
|
||||||
LayoutProblem, RawFunctionLayout, TagIdIntType, TagOrClosure, UnionLayout, WrappedVariant,
|
LayoutProblem, RawFunctionLayout, TagIdIntType, UnionLayout, WrappedVariant,
|
||||||
};
|
};
|
||||||
use bumpalo::collections::{CollectIn, Vec};
|
use bumpalo::collections::{CollectIn, Vec};
|
||||||
use bumpalo::Bump;
|
use bumpalo::Bump;
|
||||||
|
|
@ -5505,7 +5505,7 @@ fn convert_tag_union<'a>(
|
||||||
tag_name: wrapped_tag_name,
|
tag_name: wrapped_tag_name,
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
debug_assert_eq!(TagOrClosure::Tag(tag_name.clone()), wrapped_tag_name);
|
debug_assert_eq!(wrapped_tag_name.expect_tag(), tag_name);
|
||||||
|
|
||||||
field_symbols = {
|
field_symbols = {
|
||||||
let mut temp = Vec::with_capacity_in(field_symbols_temp.len(), arena);
|
let mut temp = Vec::with_capacity_in(field_symbols_temp.len(), arena);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue