blob: babe2f065816459c80100c9e3147c016addcd1bd (
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 ForgottenManager;
// See ForgottenManager. This includes ForgottenManager to ensure that
// loading this file fails.
protocol ManageeForgot {
child:
async __delete__();
};
|