Skip to content

Commit

Permalink
Add todo spec test for libsass issue 2144
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Sep 2, 2016
1 parent 4972d3f commit cf49171
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_2144/error
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SystemStackError: stack level too deep
Use --trace for backtrace.
Empty file.
12 changes: 12 additions & 0 deletions spec/libsass-todo-issues/issue_2144/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@mixin xx($p_a)
{
@include yy();
}

@mixin yy(){
@include xx(3);
}

.x{
@include yy();
}
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_2144/status
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65

0 comments on commit cf49171

Please sign in to comment.