blob: f8e762093c95feecede1965b5aa9c2bc41b987bd (
plain)
1
2
3
4
5
6
7
8
9
10
|
//error: protocol `IntrSyncManagee' requires more powerful send semantics than its manager `IntrSyncManager' provides
include protocol IntrSyncManagee;
[ChildProc=any]
sync protocol IntrSyncManager {
manages IntrSyncManagee;
parent:
async IntrSyncManagee();
};
|