Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0019-56.cs
blobab3a191262e85888712ae166cc60caefb91a5f24
1 // CS0019: Operator `+' cannot be applied to operands of type `Program' and `Program'
2 // Line: 8
4 public class Program
6 static void Main ()
8 Program b = default (Program) + default (Program);