summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/phase/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/semantics/phase/parse.rs')
-rw-r--r--dhall/src/semantics/phase/parse.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/src/semantics/phase/parse.rs b/dhall/src/semantics/phase/parse.rs
index 00db422..b72fe7f 100644
--- a/dhall/src/semantics/phase/parse.rs
+++ b/dhall/src/semantics/phase/parse.rs
@@ -4,9 +4,9 @@ use std::path::Path;
use crate::error::Error;
use crate::semantics::phase::resolve::ImportRoot;
-use crate::semantics::phase::Parsed;
use crate::syntax::binary;
use crate::syntax::parse_expr;
+use crate::Parsed;
pub(crate) fn parse_file(f: &Path) -> Result<Parsed, Error> {
let mut buffer = String::new();