You've already forked linux-packaging-mono
Imported Upstream version 3.10.0
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
This commit is contained in:
29
mcs/tests/gtest-621.cs
Normal file
29
mcs/tests/gtest-621.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
|
||||
class X
|
||||
{
|
||||
static int Main ()
|
||||
{
|
||||
int? intArg = 1;
|
||||
long? longArg = 2;
|
||||
|
||||
var g = intArg ?? longArg;
|
||||
Console.WriteLine (g);
|
||||
if (g != 1)
|
||||
return 1;
|
||||
|
||||
intArg = null;
|
||||
g = intArg ?? longArg;
|
||||
Console.WriteLine (g);
|
||||
if (g != 2)
|
||||
return 2;
|
||||
|
||||
longArg = null;
|
||||
g = intArg ?? longArg;
|
||||
Console.WriteLine (g);
|
||||
if (g != null)
|
||||
return 3;
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user