blob: 4335dc8dc7719a55f1290e9c7409f0c6366afd28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//error: |manages| declaration in protocol `ForgottenManager' does not match any |manager| declaration in protocol `ManageeForgot'
include protocol ManageeForgot;
// ManageeForgot should have this protocol as its manager.
protocol ForgottenManager {
manages ManageeForgot;
child:
async ManageeForgot();
};
|