Index: test/mjsunit/strong/declaration-after-use.js |
diff --git a/test/mjsunit/strong/declaration-after-use.js b/test/mjsunit/strong/declaration-after-use.js |
index 020067c1e5aa3c56d8da5e58788235a868b987ac..0bd8fa4ae71db6031cae07ef82c4c162b1a635c3 100644 |
--- a/test/mjsunit/strong/declaration-after-use.js |
+++ b/test/mjsunit/strong/declaration-after-use.js |
@@ -211,13 +211,13 @@ function assertThrowsHelper(code) { |
func2; |
function func4(p, ...rest) { p; rest; this; func2; } |
- func4(); |
+ func4(1, 2); // FIXME |
rossberg
2015/05/05 14:26:20
Why FIXME?
arv (Not doing code reviews)
2015/05/05 16:46:29
Let me make that more explicit.
The arity checkin
|
let func5 = (p1, p2) => { p1; p2; }; |
- func5(); |
+ func5(1, 2); |
let func5b = p1 => p1; |
- func5b(); |
+ func5b(1); |
function func6() { |
var1, var2a, var2b, var2c; |