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

function receive()
{
    print("function receive()");
    // this will print an error.
    foo.bar = "test";
}