aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/temporary1.C
blob: 5258edf36a5d5089ca165d5fc1a4817aa2f98d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link: 
// GROUPS passed temporaries
#include <stdio.h>

main ()
{
        int a = 2;

        if (----a == 0)
                printf ("a = 0\n");

        printf ("a = %d\n", a);
}