Closed
Description
In the code here:
macro_rules! handle_heading_element(
($tag:expr, $string:expr, $ctor:ident, $type_id:expr, $level:expr) => (
if eq_slice($tag, $string) {
let _element = ~HTMLHeadingElement {
parent: Element::new($type_id, ($tag).to_str()),
level: $level
};
unsafe {
return Node::as_abstract_node(_element);
}
}
)
)
(taken from jack's servo repo.)
The compiler will complain that element is unused unless I prefix it with _, even though it is clearly used shortly after.