Suppress an unused warning

This commit is contained in:
Richard Feldman 2019-07-30 22:48:27 -04:00
parent 74ad51aae9
commit 36aec73d75

View file

@ -140,7 +140,8 @@ impl Scope {
} }
} }
struct Procedure { #[allow(dead_code)] // TODO remove this once Procedure is fully used.
pub struct Procedure {
name: Option<String>, name: Option<String>,
closes_over: ImSet<Symbol>, closes_over: ImSet<Symbol>,
is_self_tail_recursive: bool, is_self_tail_recursive: bool,