mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Upgrade to correct bumpalo version in reporting Cargo
This commit is contained in:
parent
2eb729937e
commit
b4e028a39c
2 changed files with 2 additions and 2 deletions
|
@ -24,4 +24,4 @@ maplit = "1.0.1"
|
||||||
indoc = "0.3.3"
|
indoc = "0.3.3"
|
||||||
quickcheck = "0.8"
|
quickcheck = "0.8"
|
||||||
quickcheck_macros = "0.8"
|
quickcheck_macros = "0.8"
|
||||||
bumpalo = "2.6"
|
bumpalo = { version = "3.2", features = ["collections"] }
|
||||||
|
|
|
@ -20,7 +20,7 @@ mod test_report {
|
||||||
use crate::helpers::{assert_correct_variable_usage, can_expr, infer_expr, CanExprOut};
|
use crate::helpers::{assert_correct_variable_usage, can_expr, infer_expr, CanExprOut};
|
||||||
use roc_reporting::report::ReportText::{EmText, Plain, Region, Type, Url, Value};
|
use roc_reporting::report::ReportText::{EmText, Plain, Region, Type, Url, Value};
|
||||||
use roc_types::subs::Content::{FlexVar, RigidVar, Structure};
|
use roc_types::subs::Content::{FlexVar, RigidVar, Structure};
|
||||||
use roc_types::subs::FlatType::{EmptyRecord, Record};
|
use roc_types::subs::FlatType::EmptyRecord;
|
||||||
|
|
||||||
// use roc_problem::can;
|
// use roc_problem::can;
|
||||||
fn to_simple_report(text: ReportText) -> Report {
|
fn to_simple_report(text: ReportText) -> Report {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue