aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi6.C
blob: e78f50019a5afbe54e4e49d9a66b749cad37c98a (plain)
1
2
3
4
5
6
7
8
// Origin PR c++/51477
// { dg-do compile { target c++11 } }

struct A
{
    typedef int int T; // { dg-error "two or more data types in declaration" }
    struct T x[1] = { 0 }; // { dg-error "invalid|forward" }
};