2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019.cs
blobb7f686e8879f0b942491635cb5c67760662ec159
1 // CS0019: Operator `??' cannot be applied to operands of type `int' and `int'
2 // Line: 8
3 class X
5 static void Main ()
7 int a = 5;
8 int b = a ?? 3;