aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/parse/elab1.C
blob: 8108e1d0f6d106fb86d17e74e1fa192635f4fb90 (plain)
1
2
3
4
5
6
7
8
9
namespace Name {

    typedef void *(*Function)( void *, int ); // { dg-message "previous declaration" }

    struct Foo {
      struct Function xyz[5]; // { dg-error "" }
    };

}