From 9fde213c24d3cf4b938eb0f0fab6810a319307c0 Mon Sep 17 00:00:00 2001 From: pur3mail Date: Fri, 16 Jul 2010 18:24:27 +0000 Subject: [PATCH] Issue 1: Variable attribute defines conflict with function. test for this bug, it passed. --- tests/test020.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test020.js diff --git a/tests/test020.js b/tests/test020.js new file mode 100644 index 0000000..cfd9656 --- /dev/null +++ b/tests/test020.js @@ -0,0 +1,8 @@ +// Test reported by sterowang, Variable attribute defines conflict with function. + +function a (){}; +b = {}; +b.a = {}; +a(); + +result = 1;