You've already forked linux-packaging-mono
Imported Upstream version 3.8.0
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
This commit is contained in:
26
mcs/tests/gtest-named-05.cs
Normal file
26
mcs/tests/gtest-named-05.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
class Test
|
||||
{
|
||||
public static void Main ()
|
||||
{
|
||||
string p;
|
||||
M (y: p = F (), x: p);
|
||||
|
||||
int i;
|
||||
string p2;
|
||||
M2 (out i, c: p2 = F (), b : p2);
|
||||
}
|
||||
|
||||
public static void M (string x, string y)
|
||||
{
|
||||
}
|
||||
|
||||
static void M2 (out int a, string b, string c)
|
||||
{
|
||||
a = 2;
|
||||
}
|
||||
|
||||
public static string F ()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user