add a test for const

svn: r13750
This commit is contained in:
Jon Rafkind 2009-02-19 22:15:58 +00:00
parent 09b5ece200
commit 09c6c96099

View File

@ -14,4 +14,6 @@ obj test(t, a, b){
}
var x = 3;
const y = 2;
test("x = 3", x, 3);
test("y = 2", y, 2);