Events defined like the following example are not matched properly (admittedly, these are extremely rare) ```C# class C { public event Action E = () => { }; public event Action E1 = () => { }, E2 = () => { }; } ```