summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/scriptengine/data/broken_connect.qs
blob: 2fe873b6305f776d0970574c1accad981ee2412b (plain)
1
2
3
4
5
6
7
8
9
10
11
function BrokenConnect()
{
    emiter.emitted.connect(receive)
}

function receive()
{
    print("function receive()");
    // this should throw an exception, "foo" does not exist
    foo.bar = "test";
}