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

int main ()
{
        int a = 2;

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

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