2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-12.cs
blob06da5a8b8b592bcbf9f5647edd68e9a0e7fd21b2
1 // CS0019: Operator `??' cannot be applied to operands of type `null' and `bool'
2 // Line: 8
4 class Program
6 static void Main()
8 object s = null ?? true;