aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/interop/interop_error_recovery.bad
blob: e86931820a6097e3d302d77e43b80883cc77c5ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

interop bad1 = "nonexistent_interop" (); // ERROR

bad1:type a;
int b = bad1:value;

() test()
{
    bad1:func(bad1:value);
    bad1:stuff->work();
    bad1:T x = :typeident;
    for bad1:type x in bad1:array { }
}