[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-anon-56.cs
blob26dacde38b82d4ba88c7b1d978e6e7f35a1e7ce0
2 delegate void QueueHandler (Observable sender);
4 class Observable {
5 static QueueHandler Queue;
7 public static void Main (string[] args) {
8 Queue += (QueueHandler) delegate { System.Console.WriteLine ("OK"); };