Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0019.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13c97e6ee7e870a115cbc36170d6ea8b48028f5d (plain)
1
2
3
4
5
6
7
8
9
10
// CS0019: Operator ?? cannot be applied to operands of type `int' and `int'
// Line: 8
class X
{
	static void Main ()
	{
		int a = 5;
		int b = a ?? 3;
	}
}