See #61. Add LESS example with Mixins to test.

This commit is contained in:
Glavin Wiechert 2014-09-07 19:38:24 -03:00
parent 9c1965dec6
commit 7dbff2cbc1
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// Breaks (fixed now)
.mixin(@variable, @anotherVariable) {
}
// Works
.mixin(@variable; @anotherVariable) {
}
// Ok
.mixin(@variable) {
}