summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/structRedecl.ipdl
blob: 03a555787730d635ad2f5794d72f1352644a931d (plain)
1
2
3
4
5
6
7
8
9
10
//error: redeclaration of symbol `a', first declared at

struct Redecl {
    int a;
    double a;
};

protocol structRedecl {
child: async __delete__();
};