This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Description
codepen.io example for testing: http://codepen.io/anon/pen/opiJc
@other-color: #ff0000;
.a {
@color: #00ff00;
}
.b {
@color: #0000ff;
}
.c {
@color: @other-color;
}
// Change this mixin to each of the mixins above. .a() works, .b() works, .c() throws an error
.a();
body {
background-color: @color;
}