blob: 1247aa41cfc1e40ac43ac874bc4d2ef4d0e3709d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//error: message name `Msg' already declared as `MessageType'
//error: redeclaration of symbol `Msg', first declared at
protocol redeclMessage {
// can't declare two messages with the same name
child:
async Msg();
async Msg();
};
|