mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 00:01:16 +00:00
turn vec into boxed slice
This commit is contained in:
parent
203c5b53be
commit
fd9d57d314
5 changed files with 12 additions and 7 deletions
|
@ -1117,7 +1117,7 @@ pub struct Alias {
|
|||
pub enum Problem {
|
||||
CanonicalizationProblem,
|
||||
CircularType(Symbol, Box<ErrorType>, Region),
|
||||
CyclicAlias(Symbol, Region, Vec<Symbol>),
|
||||
CyclicAlias(Symbol, Region, Box<[Symbol]>),
|
||||
UnrecognizedIdent(InlinableString),
|
||||
Shadowed(Region, Located<Ident>),
|
||||
BadTypeArguments {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue