You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
18
mcs/errors/cs1744-3.cs
Normal file
18
mcs/errors/cs1744-3.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
// CS1744: Named argument `p1' cannot be used for a parameter which has positional argument specified
|
||||
// Line: 8
|
||||
|
||||
internal class Program
|
||||
{
|
||||
public static void Main ()
|
||||
{
|
||||
Method (1, 2, p1: 3);
|
||||
}
|
||||
|
||||
static void Method (int p1, int paramNamed, int p2)
|
||||
{
|
||||
}
|
||||
|
||||
static void Method (int p1, int p2, object paramNamed)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user