summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/typedef_scope_runme.js
blob: 0ac56884cc0e67e2234be29dff5d9e72ff412e20 (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!!");