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

sync protocol redeclParamReturn {

    // it's an error to name a parameter with the same id as a return

parent: async Msg(int f) returns (bool f);

};