mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
|
|
guard-default-func-conflict {
|
|
.m(1) {}
|
|
.m(@x) when not(default()) {}
|
|
.m(@x) when (@x = 3) and (default()) {}
|
|
|
|
.m(2);
|
|
.m(3);
|
|
}
|