diff --git a/lang/syn/src/parser/context.rs b/lang/syn/src/parser/context.rs index e153d0c16b..5ef6bc0d7d 100644 --- a/lang/syn/src/parser/context.rs +++ b/lang/syn/src/parser/context.rs @@ -120,7 +120,8 @@ impl ParsedModule { ) -> Result, anyhow::Error> { let mut modules = BTreeMap::new(); - let mut args = Vec::with_capacity(2); + let mut args = Vec::with_capacity(3); + args.push("--ugly".to_owned()); if let Some(features) = features { args.push("--features".to_owned()); args.push(features.join(","));