From 61e6403ac6a7e7214e03de1514a8717289c514a5 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Sat, 26 Feb 2022 17:44:39 +0800 Subject: [PATCH] Fix bug. --- src/ast/script_fn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/script_fn.rs b/src/ast/script_fn.rs index 48114ee9..4c103cf7 100644 --- a/src/ast/script_fn.rs +++ b/src/ast/script_fn.rs @@ -1,7 +1,7 @@ //! Module defining script-defined functions. #![cfg(not(feature = "no_function"))] -use super::StmtBlock; +use super::{FnAccess, StmtBlock}; use crate::{Identifier, StaticVec}; #[cfg(feature = "no_std")] use std::prelude::v1::*;