aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/backend/array_comparison.good
blob: ecb516ac4329101086a556b90c32401827e2b405 (plain)
1
2
3
4
5
6
7
8

() test()
{
    int#[3] a = [1, 2, 3];
    int#[3] b = [3, 2, 1];
    bool c = (a == b);
    if b == a return;
}