2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-11.cs
blob8dd9e933dec2c40a388635e2d1108949a978f326
1 // CS0019: Operator `+' cannot be applied to operands of type `null' and `MyTypeImplicitOnly?'
2 // Line: 13
4 struct MyTypeImplicitOnly
8 class C
10 static void Main ()
12 MyTypeImplicitOnly? mt = null;
13 mt = null + mt;