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

() test() {
    int var^ a;
    byte var^ b;
    (int, int) var^ c;
    (int, byte) var^ d;
    
    /* ERRORS */
    a = b;
    c = d;
}