aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/gen-attrs-19.C
blob: 5ac93d845909d6d993a3e6059d4a8131ca002ef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/19739
// { dg-do compile { target c++11 } }

void Dummy() [[ , ]];
void Dummy() {}

int main (int argc, char **argv)
{
    Dummy();
    return 0;
}