1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

remove unused use

This commit is contained in:
azur 2023-03-01 02:25:15 +07:00
parent 4f6b1b5df1
commit 375073ed6b
2 changed files with 1 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#![allow(clippy::type_complexity)]
use chumsky::{error, prelude::*, Stream};
use chumsky::{prelude::*, Stream};
use std::fmt::{Display, Formatter, Result as FmtResult};
use crate::trans::ty::Type;

View file

@ -1,4 +1,3 @@
use std::fmt::{Display, Formatter, Result as FmtResult};
use crate::trans::ty::*;
use super::parse::Spanned;