summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/typedef_scope_runme.js
blob: 5c1368ab783b3acbc68714d6141753e3b0470fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var typedef_scope = require("typedef_scope");

b = new typedef_scope.Bar();
x = b.test1(42,"hello");
if (x != 42)
    print("Failed!!");

x = b.test2(42,"hello");
if (x != "hello")
    print("Failed!!");