This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class ActionInLimbo { | |
public static void Main() { | |
Action frob_s = () => { | |
throw new Exception(nameof(frob_s)); | |
}; | |
Action frob_a = async () => { | |
throw new Exception(nameof(frob_a)); | |
}; |