summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/structUnknownField.ipdl
blob: ac92edee234f034bcedd78dbac4d7c03177c2dbb (plain)
1
2
3
4
5
6
7
8
9
//error: field `i' of struct `S' has unknown type `Foobers'

struct S {
    Foobers i;
};

protocol structUnknownField {
child: async __delete__(S s);
};