Skip to content

Commit

Permalink
test: another edge case test
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Jun 7, 2019
1 parent f406305 commit 5780360
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ function f(g = () => a) {
function h(a, g = () => a) {
return g();
}

function j(g = a) {
return g;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ function f(g = () => a) {
function h(z, g = () => z) {
return g();
}

function j(g = a) {
return g;
}

0 comments on commit 5780360

Please sign in to comment.