1 // CS0246: The type or namespace name `InvalidTypeBlah' could not be found. Are you missing an assembly reference?
5 // This test is here to test that the compiler does not crash after it
6 // reports the error due to an invalid type being referenced in the
11 public class AnonDelegateTest
13 public delegate void TestDelegate(AnonDelegateTest something
, string b
);
15 public static void Main()
17 AnonDelegateTest test
= new AnonDelegateTest();
19 // Incorrect; mcs throws unhandled exception here
20 test
.Call(delegate(InvalidTypeBlah something
, string b
) {
25 public void Call(TestDelegate d
)