summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/Waddress.d
blob: 74d7de807752d539d7a5c6803e4fdb1df75af97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile }
// { dg-options "-Waddress" }

void* ptr;

int test()
{
    if (&ptr) // { dg-warning "the address of 'ptr' will always evaluate as 'true'" }
        return 1;

    return 0;
}