2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0029-12.cs
blobad8f95c981a71f66b55462bb3e30c5c19bf4404b
1 // CS0029: Cannot implicitly convert type `A.D' to `A'
2 // Line: 11
4 class A
6 delegate void D ();
8 public static void Main ()
10 const D d = null;
11 A a = d;