blob: 9dbc7a6318f7b87ffb97fa0402ba65acfcd77fcc (
plain)
1
2
3
4
5
6
7
8
9
|
//error: protocol `SyncAsyncManagee' requires more powerful send semantics than its manager `SyncAsyncManager' provides
include protocol SyncAsyncManagee;
async protocol SyncAsyncManager {
manages SyncAsyncManagee;
parent:
async SyncAsyncManagee();
};
|