E.g. ```C# [RequiresUnreferencedCode("")] void M1() { } void M2() { Action a = M1; // should warn Action b = () => M1(); // should warn } ```