Using 1.0.0.rc1
Syntax error:
i {
&:first-child {
margin-right: == [base] * 2;
}
&:last-child {
margin-left: == [base] * 2;
}
}
Syntax error:
i:first-child {
margin-right: == [base] * 2;
}
i:last-child {
margin-left: == [base] * 2;
}
Works as expected:
i:first-child[margin-right] == [base] * 2;
i:last-child[margin-left] == [base] * 2;